我需要在网页的每个链接中绑定onclick函数,所以我使用了这个函数
var links = document.getElementsByTagName('a');// total 5 links
for(var key in links){
//always be true in IE, But just be true from second latest in chrome
alert(isNaN(parseInt(key)));
if(isNaN(parseInt(key))){
break;
}else{
...
}
}
请帮忙,谢谢
更新:似乎是for(var key in links)的问题,当在IE中时,键成为链接的Id,但它只是chrome中的数字