我使用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
答案 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”