TinyMCE:复制粘贴删除html,仅用于PDF的纯文本

时间:2014-05-09 10:29:38

标签: tinymce

当我在Tinymce中复制粘贴时,尝试删除html元素。下面的代码从Web浏览器中删除了html,但是当我从PDF文件中复制粘贴文本时它不起作用。如何从PDF文件中删除垃圾?

<script>
    tinymce.init({
    plugins : 'paste',
    paste_as_text: true,
    paste_remove_styles_if_webkit: true,
    paste_enable_default_filters : true,
    paste_block_drop : false,
    paste_retain_style_properties : "none",
    paste_strip_class_attributes : "all",
    paste_remove_spans : true,
    cleanup_on_startup : true,
    fix_list_elements : false,
    fix_nesting : false,
    fix_table_elements : false,
    paste_use_dialog : true,
    enter code here`  paste_auto_cleanup_on_paste : true,

  paste_preprocess : function(pl, o) {
            // Content string containing the HTML from the clipboard
            var str = o.content;
            var ta = document.createElement("textarea");
            ta.innerHTML = str.replace(/</g,"&lt;").replace(/>/g,"&gt;");
            o.content = CleanWordHTML(ta.value);
 },
 paste_postprocess : function(pl, o) {
}

});
</script>

0 个答案:

没有答案