-
Notifications
You must be signed in to change notification settings - Fork 5
js变量存储问题
web240 edited this page Nov 16, 2016
·
1 revision
for(var i = 0; i < lis.length; i++){ lis[i].index = i; lis[i].onclick = function(){
alert(this.index+1);
}
}