Tinymce从所有元素中丢失了我的内联样式。我已经尝试了很多东西。
language : "fi", theme : "advanced", plugins : "style,paste,table,media,layer,fullscreen,autoresize", theme_advanced_disable : "help,sub,sup,anchor", theme_advanced_buttons1_add : "styleprops,fontselect,fontsizeselect,forecolor", theme_advanced_buttons2_add : "pastetext,pasteword", theme_advanced_buttons3 : "tablecontrols,hr,removeformat,media,fullscreen", remove_linebreaks : true, remove_trailing_nbsp : true, relative_urls : false, remove_script_host : false, entity_encoding : "raw", fix_nesting: true, theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_resize_horizontal : true, theme_advanced_resizing : true, theme_advanced_path_location : "bottom", file_browser_callback : 'myFileBrowser', valid_elements : '*[*]', inline_styles : true
我不认为还有更多东西可以让用户去做。但仍然。当我点击我的表格,打开属性,将宽度更改为600并查看HTML时,它表示style =“width:600px”。
但是,当我提交它时,下一页将不会获得该样式属性。这让我很生气,我不知道在哪里看,因为我做过的任何事都没有改变。我的语法是否有问题,我无法看到,因为我太生气了什么?还有其他想法吗?
由于
答案 0 :(得分:1)
在特殊事件中,编辑器内容将被写回以前的html元素。 Tinymce有一个内置的清理功能,它将根据你的设置清理你的内容(这通常发生在保存和onSubmit上)。您必须检查以下tinymce设置:
确保表格可以具有width属性。
答案 1 :(得分:0)
我使用以下配置并且有类似的问题:
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Example content CSS (should be your site CSS)
content_css : "css/example.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
你认为你必须设置valid_elements
吗?我没有它设置并且工作正常。可能是默认设置效果更好。 tinyMCE minorVersion:“3.9.3”,releaseDate:“2010-12-20”