在tinyMCE上将p转换为br

时间:2011-09-05 18:26:56

标签: javascript tinymce inline-editing

请帮忙。我使用tinyMCE作为内联编辑器。因此,我需要在用户处于编辑模式时按Enter键,然后<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的版本

1 个答案:

答案 0 :(得分:1)

您需要设置

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

Here is a helpfull section简介常见问题解答。