我正在分配包含链接在页面上的数字的 onclicks。这是我的代码:
var aTags = document.getElementsByTagName("a");
for (var t = 0; t < aTags.length; t++){
var aTag = aTags[t];
aTag.onclick = function(){setSubMenu(t);};
}
function setSubMenu(t){
console.log("t: " + t);
//The issue is t is always evaluating to the length of aTags
//instead of the current tag.
}
我该如何解决这个问题?