TinyMCE 和 BBCode 插件

发布于 2024-12-09 06:07:54 字数 978 浏览 0 评论 0原文

我正在尝试实现tinyMCE 的BBCode 插件,但无法使其工作。 这是初始化代码:

$(textarea).tinymce({
    script_url : '/js/tiny_mce/tiny_mce.js',
    theme : "advanced",
    plugins : "bbcode",
    theme_advanced_buttons1 : "bold,italic,underline,forecolor,|,undo,redo,link,unlink,|,removeformat,cleanup",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_styles : "Code=codeStyle;Quote=quoteStyle",
    entity_encoding : "raw",
    remove_linebreaks : false,
    forced_root_block : false,
    force_br_newlines : true,
    force_p_newlines : false,    
    convert_newlines_to_brs : true,
    remove_redundant_brs : false,
    width: '700px',
    height: '250px'
});

问题是,当我提交表单时,将发布 HTML 标签而不是 BBCode。如果我在控制台上尝试 tinyMCE.activeEditor.getContent(),它会带来 BBCode。

我正在使用 input[type=submit] 发送表单(不附加任何 JS)。

为什么我没有发布 BBCode?

I am trying to implement tinyMCE's BBCode plugin but not being able to make it work.
This is the init code:

$(textarea).tinymce({
    script_url : '/js/tiny_mce/tiny_mce.js',
    theme : "advanced",
    plugins : "bbcode",
    theme_advanced_buttons1 : "bold,italic,underline,forecolor,|,undo,redo,link,unlink,|,removeformat,cleanup",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_styles : "Code=codeStyle;Quote=quoteStyle",
    entity_encoding : "raw",
    remove_linebreaks : false,
    forced_root_block : false,
    force_br_newlines : true,
    force_p_newlines : false,    
    convert_newlines_to_brs : true,
    remove_redundant_brs : false,
    width: '700px',
    height: '250px'
});

The thing is that when I submit the form, HTML tags are being posted instead of BBCode. If I try tinyMCE.activeEditor.getContent() on the console, it brings BBCode.

I'm using an input[type=submit] to send the form (without any JS attached to it).

Why am I not getting BBCode posted?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别挽留 2024-12-16 06:07:54

在将文本区域内容发送到处理数据的文件之前,尝试通过 htmlentities 函数传递文本区域内容!

Try passing the textarea content by a htmlentities function before sending it to the file that will handle the data!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文