tinymce文本对齐问题

时间:2013-04-16 06:39:18

标签: html json tinymce

我在tinymce中用空格和html(换行符和其他等等)写文本描述。然后我将它保存到mysql数据库。当我再次得到它并提醒它时,它显示我和它一样。所以直到现在好了。 当我再次将它添加到tinymce来编辑它时,所有的html和空格都消失了......可能是什么问题? 这是我的代码

 $('#description').tinymce({
                // Location of TinyMCE script
                script_url : 'tinymce/jscripts/tiny_mce/tiny_mce.js',
                // General options
                width : "825",
                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,spellchecker",
                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,spellchecker",
                spellchecker_languages : "+English=en,Russian=ru",
                // encoding : "xml",
                // Example content CSS (should be your site CSS)
                content_css : "tinymce/examples/css/content.css",

                //
                apply_source_formatting : true,

                // Replace values for the template plugin
                template_replace_values : {
                    username : "Some User",
                    staffid : "991234"
                }   
            });

这是我如何获得价值

alert(json.description_demo);//this is ok
 $("#description").val(json.description_demo);
 alert($("#description").val());//now this is not ok..here is issue

也尝试了这个

alert(json.description_demo);//ok
tinyMCE.get('description').setContent(json.description_demo);
alert(tinyMCE.get('description').getContent());//issue not ok

图像 working notworking after value

1 个答案:

答案 0 :(得分:0)

您必须使用tinyMce功能来设置值。

尝试使用

tinyMCE.get('description')。getContent()获取值

tinyMCE.get('description')。setContent(db中的值)来设置值。

Chekout tinymce docs http://www.tinymce.com/wiki.php/API3:method.tinymce.Editor.getContent