jQuery的each终止或跳过示例代码_jquery
程序员文章站
2022-05-28 21:34:40
...
涉及迭代,不可避免需要有非正常终止,或强制跳过的情况。在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;
}
});
上一篇: php结合ACCESS的跨库查询功能
下一篇: PHP通过串口实现发送短信_PHP