$('.case').each(function(){
$(this)//指当前遍历DOM对象
return; //return false;跳出循环
});
原生js遍历选择器获取对象:
document.querySelectorAll("div").forEach(function(item.index){
item.dataset['id'];
// return ;只终止本次循环,如果要跳出循环只能使用抛出异常的方法
});
$('.case').each(function(){
$(this)//指当前遍历DOM对象
return; //return false;跳出循环
});
原生js遍历选择器获取对象:
document.querySelectorAll("div").forEach(function(item.index){
item.dataset['id'];
// return ;只终止本次循环,如果要跳出循环只能使用抛出异常的方法
});