2

当调用 Node.prototype.appendChild(obj) 时,我编写了以下代码来提醒消息。

var _appendChild = Node.prototype.appendChild;
Node.prototype.appendChild = function(object){
    alert("append");
    return _appendChild.apply(this,[object]);           ;
};  

它在IE8中不起作用..

我已阅读此链接,其中回答说原型函数不能在 IE 中被覆盖

如何覆盖 javascript 的 cloneNode?

但我仍然想问是否有任何工作可以做我想做的事。

谢谢

4

2 回答 2

3

在 IE8 中不能扩展 Node,但可以扩展 HTMLDocument.prototype 和 Element.prototype。

Microsoft 文档的链接

function _MS_HTML5_getElementsByClassName(classList){
    var tokens= classList.split(" ");
    var staticNodeList= this.querySelectorAll("." + tokens[0]);
    for(var i= 1; i<tokens.length; i++){
        var tempList= this.querySelectorAll("." + tokens[i]);           
        var resultList= new Array();
        for(var finalIter= 0; finalIter<staticNodeList.length; finalIter++){
            var found= false;
            for(var tempIter= 0; tempIter<tempList.length; tempIter++){
                if(staticNodeList[finalIter]== tempList[tempIter]){
                    found= true;
                    break;                      
                }
            }
            if(found){
                resultList.push(staticNodeList[finalIter]);
            }
        }
        staticNodeList= resultList;
    }
    return staticNodeList;
}

if(!document.getElementsByClassName && Element.prototype){
    HTMLDocument.prototype.getElementsByClassName= _MS_HTML5_getElementsByClassName;
    Element.prototype.getElementsByClassName= _MS_HTML5_getElementsByClassName;
}
于 2012-05-30T02:48:06.247 回答
1

谢谢肯尼贝克

最后我发现我无法实现它只是因为它在怪癖模式下运行......我写了一个其他人可能感兴趣的例子。

var elementPrototype = typeof HTMLElement !== "undefined"
        ? HTMLElement.prototype : Element.prototype;

var _appendChild = elementPrototype.appendChild; 

elementPrototype.appendChild = function(content){
    //Do what you want-----

    alert("Append Child!");

    //---------------------
    return _appendChild(content);
}
于 2012-06-04T04:53:47.193 回答