对我的变量之一执行alert()给我这个结果

  [object NodeList]

我如何看到其中的所有值?

笔记;我在Firefox上,不知道如何使用chromebug,因此未安装。

最佳答案

您可以像处理数组一样迭代NodeList中的值:

for (var index = 0; index < nodeList.length; index++) {
    alert(nodeList[index]);
}

这是一个很好的资源,其中包含一些更深入的信息:https://web.archive.org/web/20170119045716/http://reference.sitepoint.com/javascript/NodeList

关于Javascript,查看 "object nodelist",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6880773/

10-12 15:59