for of 遍历

for of 可以遍历数组和对象

for (var l in document.links){
    alert(l.href);
}

你可能感兴趣的:(for of 遍历)