jQuery的each终止或跳过示例代码
时间:2021-02-11 11:22:30|栏目:jquery|点击: 次
涉及迭代,不可避免需要有非正常终止,或强制跳过的情况。在jQuery的each函数中,存在以下关系:
continue :return true;
break :return false;
直接return也会跳出jQuery。
设置下拉列表选中,并终止迭代
$("#area option").each(function(){
if($(this).text()==addrTmp[2]){
$(this).attr("selected", "selected");//
return false;
}
});
continue :return true;
break :return false;
直接return也会跳出jQuery。
设置下拉列表选中,并终止迭代
复制代码 代码如下:
$("#area option").each(function(){
if($(this).text()==addrTmp[2]){
$(this).attr("selected", "selected");//
return false;
}
});
栏 目:jquery
下一篇:jquery html添加元素/删除元素操作实例详解
本文标题:jQuery的each终止或跳过示例代码
本文地址:http://www.codeinn.net/misctech/61212.html