gpt4 book ai didi

JavaScript IE8 : Add a function to a NodeList object

转载 作者:行者123 更新时间:2023-11-30 05:53:41 26 4
gpt4 key购买 nike

我有一个对 NodeList 的引用,我只是想将一个函数附加到该对象,以便稍后由脚本的另一个区域调用。

// Quick and dirty hack to obtain a NodeList from given element(s):
var fragment = document.createDocumentFragment(),
nodeList;
fragment.appendChild(document.getElementById("test").cloneNode(true));

nodeList = fragment.childNodes;
console.log(nodeList);

// How can a method be defined on the nodeList in IE8?
nodeList["someMethod"] = function() { alert("YOU WIN!"); };
nodeList.someMethod();

实例:http://jsfiddle.net/gCwAr/

以上代码适用于以下浏览器:IE9、Chrome、Firefox、Safari、Opera。

我的问题是如何让代码在 IE8 中工作,因为在倒数第二行会抛出以下错误:

Object doesn't support this property or method

最佳答案

扩展宿主对象,例如 DOM 对象是 generally a bad idea .只是不要这样做。相反,将 NodeList 包装在您自己的对象中,该对象具有您的额外方法。

关于JavaScript IE8 : Add a function to a NodeList object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13288155/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com