2

我有一个 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;
});
},

});

4

1 回答 1

2

出于某种奇怪的原因,我在最新的 tinymce 中没有做任何工作。我希望这可以帮助遇到这个问题的其他人

  cleanup_on_startup : true,
  fix_list_elements : false,
  fix_nesting : false,
  fix_table_elements : false,
  paste_use_dialog : true,
  paste_auto_cleanup_on_paste : true,

我不得不将这些粘贴到 init 函数中。这允许它发布纯文本,然后当用户放置诸如居中之类的样式时,它会在指定文本周围添加段落标签

于 2013-05-31T16:10:42.910 回答