2

我已经像这样初始化了 tinyMCE:

        $('#description').tinymce({
        // Location of TinyMCE script
        script_url : 'tinymce/jscripts/tiny_mce/tiny_mce.js',
        // General options
        width : "830",
        height: "300",
        theme : "advanced",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_toolbar_location : "top",
        theme_advanced_buttons1 : "bold,italic,underline,strikethrough,bullist,numlist,",
        theme_advanced_buttons2 : "",
        theme_advanced_buttons3 : "",
        theme_advanced_buttons4 : "",
        force_br_newlines : true,
        force_p_newlines : false,
        gecko_spellcheck : true,  
        forced_root_block : '', // Needed for 3.x

        plugins : "paste"


    });

我有一些文本的文本区域。当我运行它时,它会删除所有空格和换行符并在一行中显示文本这是我的文本

“全新!!!

位于迪拜码头奥拉塔的超大三卧室公寓出租

位于高楼层,可俯瞰滨海壮丽景色"

4

2 回答 2

3

您可以通过添加另一个参数来管理它 remove_linebreaks

$('#description').tinymce({
// Location of TinyMCE script
    script_url : 'tinymce/jscripts/tiny_mce/tiny_mce.js',
    // General options
    width : "830",
    height: "300",
    theme : "advanced",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_toolbar_location : "top",
    theme_advanced_buttons1 : "bold,italic,underline,strikethrough,bullist,numlist,",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_buttons4 : "",
    force_br_newlines : true,
    force_p_newlines : false,
    gecko_spellcheck : true,  
    forced_root_block : '', // Needed for 3.x

    remove_linebreaks : false,

    plugins : "paste"});

但这取决于您使用的 tinyMCE 版本。因为在下面的站点中,他们说该属性在某些版本中不可用。 http://www.tinymce.com/wiki.php/Configuration3x:remove_linebreaks

于 2013-04-19T12:32:16.053 回答
0

万一将来有人遇到这种情况,我们会遇到换行符被剥离的问题,并且尝试了我们能找到的几乎所有建议,但没有运气。

我在这里遇到了这个解决方案:http: //community.tinymce.com/forum/viewtopic.php ?id=5636 ,它完美地做到了。

在 tinyMCE.init() 函数中添加以下两行,默认情况下它们似乎设置为 false。

force_p_newlines : true,
force_br_newlines : true
于 2016-03-09T15:38:56.893 回答