Элемент.прототип в IE7?

Я пытаюсь расширить все элементы dom, чтобы я мог получать и удалять их дочерние элементы. Функция ниже (работает в FF и Chrome). Существует ли эквивалент в IE7 для расширения базового dom-объекта?

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);
}

Спасибо!

Ответ 1

Нет. Будет некоторая ограниченная поддержка в IE8, но до тех пор вам лучше найти другое место, чтобы повесить ваши функции.

Ответ 2

Вот простой способ обхода, который будет достаточным в 99% случаев. Он также может быть выполнен в соответствии с вашим script:

if ( !window.Element ) 
{
    Element = function(){};

    var __createElement = document.createElement;
    document.createElement = function(tagName)
    {
        var element = __createElement(tagName);
        if (element == null) {return null;}
        for(var key in Element.prototype)
                element[key] = Element.prototype[key];
        return element;
    }

    var __getElementById = document.getElementById;
    document.getElementById = function(id)
    {
        var element = __getElementById(id);
        if (element == null) {return null;}
        for(var key in Element.prototype)
                element[key] = Element.prototype[key];
        return element;
    }
}

Ответ 3

В IE нет набора "Элемент", поэтому вы не можете получить доступ к прототипу элемента, чтобы напрямую добавить свою функцию. Обходной путь состоит в том, чтобы перегрузить "createElement" и "getElementById", чтобы они возвращали элемент с модифицированным прототипом с вашей функцией.

Спасибо Simon Uyttendaele за решение!

if ( !window.Element )
{
        Element = function(){}

        Element.prototype.yourFunction = function() {
                alert("yourFunction");
        }


        var __createElement = document.createElement;
        document.createElement = function(tagName)
        {
                var element = __createElement(tagName);
                for(var key in Element.prototype)
                        element[key] = Element.prototype[key];
                return element;
        }

        var __getElementById = document.getElementById
        document.getElementById = function(id)
        {
                var element = __getElementById(id);
                for(var key in Element.prototype)
                        element[key] = Element.prototype[key];
                return element;
        }
}