2

我正在尝试为 tinymce 编辑器包含一些简单的插件。分页符和打印更具体,一旦我这样做,就会在第一行的 editor_plugin.js 中吐出两个错误。现在我无法控制这个特定文件,因为这是一个默认文件,所以我假设我正在我的文件中做一些事情来触发它。

错误是这个

SyntaxError: 意外的标记 '<'

我的初始化tinymce的代码看起来像这样

 tinyMCE.init({
        mode: "exact",
        elements: "biography",
        theme: "advanced",
        width: "90%",
        height: "300px",
         plugins : "pagebreak, print",
        pagebreak_separator : "<!-- my page break -->",
       theme_advanced_buttons1: "bold,italic,underline,strikethrough,hr,blockquote,|,justifyleft,justifycenter,justifyright,justifyfull,outdent, indent,|",
       theme_advanced_buttons2: "removeformat,forecolor,code,|,print",

        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "center",
        theme_advanced_path: false,
        theme_advanced_resizing: false,
        cleanup_on_startup: true,
        fix_list_elements: false,
        fix_nesting: false,
        fix_table_elements: false,
        paste_use_dialog: true,
         height: "500px",
         width:"100%",
        paste_auto_cleanup_on_paste: true,
    });

有什么办法可以修复这个错误,以便我可以使用这些插件?

4

0 回答 0