gpt4 book ai didi

javascript - 如何将循环变量传递给元素

转载 作者:行者123 更新时间:2023-12-02 16:40:26 25 4
gpt4 key购买 nike

有人可以告诉我如何抓取i适本地?到目前为止,它只是显示相同的数字(单击任何 anchor 元素时 a.length 的值。

var a = document.getElementsByTagName('a');
for (i = 0, j = a.length; i< j;i++) {
a[i].onclick = function() {
console.log(i); //display a.length in all anchors
return false;
}
}

最佳答案

var a = document.getElementsByTagName('a');
for (i = 0, j = a.length; i< j;i++) {
a[i].idx = i;
a[i].onclick = function() {
console.log(this.idx);
return false;
}
}

关于javascript - 如何将循环变量传递给元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27560304/

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