我有一个 tinymce 表单,它在大多数情况下都可以使用,但是当我从 Internet 或文字处理器复制某些内容并尝试将其粘贴时,内联样式仍然存在。
我已经尝试过几种方法来解决这个问题,但没有运气。似乎这个风格标签困扰着我!
我会完全删除样式标签,我确实尝试过这个,但是当我这样做时,你可以在tinymce中添加的样式无效,例如文本对齐......我真的不想这样做。
这就是我目前所拥有的,你可以看到我试图删除粘贴上的样式,但它只是不起作用。一些帮助将不胜感激!
tinyMCE.init({
mode : "exact",
elements : "wStory",
plugins : "paste",
theme: "advanced",
width: "80em",
height: "700px",
paste_auto_cleanup_on_paste : true,
paste_remove_styles: true,
paste_remove_styles_if_webkit: true,
paste_strip_class_attributes: true,
theme_advanced_buttons1:"bold,italic,underline,strikethrough,hr,|,justifyleft,justifycenter,justifyright,justifyfull,outdent, indent,|,cleanup,|,forecolor, |,undo,redo,|,link, unlink",
theme_advanced_toolbar_location:"top",
theme_advanced_toolbar_align:"center",
theme_advanced_resizing:false,
width:"100%",height:"700px",
invalid_elements: "span, div",
theme_advanced_path:false,
setup : function(ed) {
ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true;
});
},
});