1

请帮忙。我使用 tinyMCE 作为内联编辑器。所以我需要当用户在编辑模式下按回车时<br />不会<p>。我阅读手册和常见问题解答并尝试

tinyMCE.init({
            'height' : '100%',
            'widht':'100%',
            'content_css' : styles + ',/sdtc-new/nc/interface/common/css/mce-editor.css',
            'mode' : "specific_textareas",
            'editor_selector' : prefix + o.id,
            'theme':'advanced',
        theme_advanced_buttons1: o.buttons.join(','),
        theme_advanced_buttons2 : "",
        **theme_advanced_buttons3 : "",
    force_br_newlines : true,
        force_p_newlines : false,
        forced_root_block : '' // Needed for 3.x**
        });

但这行不通。实际上,有时它就像我删除编辑区域中的所有内容并键入新文本一样。但我需要它一直有效。请帮忙。tinyMCE 3.4.4 版本

4

1 回答 1

1

您将需要设置

tinyMCE.init({
   forced_root_block : false,
   force_br_newlines : true,
   force_p_newlines : false
   ...
});

这是tinymce 常见问题解答的有用部分。

于 2011-09-06T09:14:24.553 回答