gpt4 book ai didi

javascript - 如何从 TinyMCE 中删除 P 标签

转载 作者:行者123 更新时间:2023-11-30 12:12:29 24 4
gpt4 key购买 nike

我使用 TinyMCE,它用 <p> 包围我的文本标签。

我试过使用这个:forced_root_block : ""以下是:How can I remove p tags that are auto added within tinymce

这对我不起作用 :X

我也看到了这个帖子: remove the extra p tag in tinyMCE

并添加:

forced_root_block : "", 
force_br_newlines : true,
force_p_newlines : 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 : "",
force_br_newlines : true, // tried with and without
force_p_newlines : false // tried with and without
//paste_remove_spans : true
});
</script>

最佳答案

您需要将以下行添加到您的 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”

关于javascript - 如何从 TinyMCE 中删除 P 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33390834/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com