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 />' ) );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 制裁名单20240508芯片厂商
  • ¥20 易康econgnition精度验证
  • ¥15 线程问题判断多次进入
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接