dongtuo4132 2013-04-18 13:48
浏览 68
已采纳

在tinymce中的Jquery文本问题

I have a simple issue,i have a textarea to which i assign text in jquery.This is plain text with some line spaces etc.here is an example of text

Brand new!!!

Huge size of 3 bedroom apartment located in Dubai Marina Orra tower for rent

Situated on high floor, overlooking a gorgeous view of Marina

Now when i assign to textarea,it is as same as above.here is code how i assign

$("#description").val(val);//val is above text

Now when i apply tinymce,it become like this

Brand new!!! Huge size of 3 bedroom apartment located in Dubai Marina Orra tower for rent Situated on high floor, overlooking a gorgeous view of Marina

spaces line breaks everything lost. here is my code for tinymce

$().ready(function() {
    $('#description').tinymce({
        // Location of TinyMCE script
        script_url : 'application/views/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"


    });
});

why my text disforms?fiddle

  • 写回答

1条回答 默认 最新

  • dongzhuang6247 2013-04-29 22:05
    关注

    In your jsFiddle you attached tinyMCE after JQuery. It didn't work, I've fixed. http://jsfiddle.net/sVs7X/3/

    As you see the issue in a comments was right. Core of your trouble – newline symbol to <br \> conversion. You can do it by yourself replacing this:

    $("#description").val(val)
    

    to this:

    $("#description").val( val.replace( /
    /, '<br />' ) );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 汇编语言除法溢出问题
  • ¥50 C++实现删除N个数据列表共有的元素
  • ¥15 Visual Studio问题
  • ¥15 state显示变量是字符串形式,但是仍然红色,无法引用,并显示类型不匹配
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗