1

スペースとhtml(改行など)を使用してtinymceにテキスト説明を書きます。次に、それを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

画像 働く 動作しない 後値

4

1 に答える 1