本文介绍了如何检查对象是否是IE中NodeList的实例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么IE6 / 7中NodeList未定义?
Why is NodeList undefined in IE6/7?
<form action="/" method="post" id="testform">
<input type="checkbox" name="foobar[]" value="1" id="" />
<input type="checkbox" name="foobar[]" value="2" id="" />
<input type="checkbox" name="foobar[]" value="3" id="" />
</form>
<script type="text/javascript" charset="utf-8">
(function () {
var el = document.getElementById('testform')['foobar[]']
if (el instanceof NodeList) {
alert("I'm a NodeList");
}
})();
</script>
这适用于FF3 / Safari 3.1,但在IE6 / 7中不起作用。任何人都有任何想法如何检查el是否是所有浏览器中的NodeList实例?
This works in FF3/Safari 3.1 but doesn't work in IE6/7. Anyone have any ideas how to check if el is an instance of NodeList across all browsers?
推荐答案
应始终有效:
...
if (typeof el.length == 'number'
&& typeof el.item == 'function'
&& typeof el.nextNode == 'function'
&& typeof el.reset == 'function')
{
alert("I'm a NodeList");
}
这篇关于如何检查对象是否是IE中NodeList的实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!