4

我正在尝试将 MS Word 格式粘贴到 Telerik RadEditer 中。不幸的是,我似乎无法让内置的格式剥离器工作。

//performing paste
var editor = $find("radEditor1");
editor.setFocus();
var rng = editor.getSelection().getRange();
rng.execCommand("Paste", null, false);

//does nothing! (even when uncommented)
//editor.fire("FormatStripper", {value: "MSWordRemoveAll" });

所以我想我可以利用 jQuery 将标签中的所有属性串起来,这可能正是我需要的。

//fixing content
var html = editor.get_html();
$("*", html).each(function(){
    var attr = $.map(this.attributes, function(item){
        return item.name;
    });
    var node = $(this);
    $.each(attr, function(i, item){
        //added a filter for crazy Error
        if(item != "dataSrc" && 
            item != "implementation" && 
            item != "dataFld" && 
            item != "dataFormatAs" &&
            item != "nofocusrect" &&
            item != "dateTime" &&
            item != "cite")
            node.removeAttr(item);
    });  
});
editor.set_html(html);

现在这个函数完成后,我的 html 变量没有更新它的 html ......

4

2 回答 2

1

这段代码似乎可以解决问题。它使用一个safeAttrs数组来更容易地更新您想要保留的属性列表。您可以传递.removeAttr()要删除的属性的空格分隔列表,因此您无需逐个遍历属性名称。

最后,不同的浏览器可能会以不同的方式处理属性(例如,Chrome 以小写形式存储所有属性,因此 'dataFld' 存储为 'datafld'),因此最好使用.toLowerCase()

var safeAttrs = ["datasrc","implementation","datafld","dataformatas","nofocusrect","datetime","cite"];

$('html *').each(function() {
    var attrs = $.map(this.attributes,function(attr) {
        if($.inArray(attr.nodeName.toLowerCase(),safeAttrs) < 0) {
            return attr.nodeName;
        } else { return null; }
    });
    $(this).removeAttr(attrs.join(' '));
});

jsFiddle 演示。使用 Chrome 或 Firebug 检查生成的元素以检查属性是否已被删除。

于 2012-06-28T22:14:46.050 回答
0

我想我有。

var html = editor.get_html();
var parent = $('<div></div>').html(html);
$(parent).find('*').each(function(){
    var attr = $.map(this.attributes, function(item){
        return item.name;
    });
    var tag = $(this);
    $.each(attr, function(i, item){
       tag.removeAttr(item);
    });
});
editor.set_html(parent.html());​

http://jsfiddle.net/duC6Z/8/

不幸的是,我的 RadEditor 仍然存在问题,但这是正常的。

于 2012-06-28T22:22:25.423 回答