すべてのdom要素を拡張して、子を取得して削除できるようにしようとしています。この機能は以下のとおりです(FFとChromeで動作します)。ベースDOMオブジェクトを拡張するためにIE7に相当するものはありますか?IE7のElement.prototype?
if (!Element.get) {
Element.prototype.get = function(id) {
for (var i = 0; i < this.childNodes.length; i++) {
if (this.childNodes[i].id == id) {
return this.childNodes[i];
}
if (this.childNodes[i].childNodes.length) {
var ret = this.childNodes[i].get(id);
if (ret != null) {
return ret;
}
}
}
return null;
}
}
Element.prototype.removeChildren = function() {
removeChildren(this);
}
ありがとうございます!
デュープhttp://stackoverflow.com/questions/592815/is-there-really-no-way-to-expose-the-prototype-of-a-html-element-in-ie-8/ – bobince