如何从TinyMCE中删除P标签

时间:2015-10-28 12:16:06

标签: javascript jquery tinymce

我使用TinyMCE并使用'product1','product2','product3'标记围绕我的文字。

我尝试使用此<p>,然后执行以下操作:How can I remove p tags that are auto added within tinymce

这对我不起作用:X

我也看过这篇文章: remove the extra p tag in tinyMCE

并补充说:

forced_root_block : ""

这没有帮助。

这是我目前的代码部分:

forced_root_block : "", 
force_br_newlines : true,
force_p_newlines : false

1 个答案:

答案 0 :(得分:3)

您需要将以下行添加到init语句

forced_root_block :false


<script type="text/javascript">
    tinymce.init({
        selector: ".mytextarea", 
        plugins: "paste",
        paste_auto_cleanup_on_paste : true,
        paste_remove_styles: true,
        paste_remove_styles_if_webkit: true,
        paste_strip_class_attributes: "all", 
        forced_root_block : false, 
        force_br_newlines : true, // tried with and without
        force_p_newlines : false // tried with and without
        //paste_remove_spans : true
    });
</script>

如果这不起作用,请尝试更改“tiny_mce.js”而不是“tiny_mce_src.js”