Tinymce paste包括款式

时间:2013-05-30 23:09:53

标签: jquery tinymce

我有一个简单的形式,并且它在大多数情况下都有效,但是当我从互联网或文字处理器复制某些内容并尝试粘贴时,内联样式仍然存在。

我已经尝试过几种解决方法,但没有运气。好像这个样式标签困扰着我!

我只是完全删除了样式标签,我确实尝试了这个,但是当我这样做时,你可以添加你可以在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;
});
},

});

1 个答案:

答案 0 :(得分:1)

由于一些奇怪的原因,我没有做过最新的工作。我希望这可以帮助遇到这个

的其他人
  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函数中。这允许它发布纯文本,然后当用户放置样式(如居中)时,它会在指定文本周围添加段落标记