nobeList = document.querySelectorAll("li") for(i = 0; i <divs,le
或者,还是写 forEach(nodeList, function (index, value) {
console.log(index, value);} ??? index 是什么表述? |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
我不明白你要问什么, 我 把forEach 写下来。
var arr = ["a","b","c","d","ggg","asfd"];
arr.forEach(function(a,b)
{
console.log("我是a:"+a+";;;;;;;;;;;;我是b我是序列号:"+b);
}) |
|
|
|
|