涉及迭代,不可避免需要有非正常終止,或強制跳過的情況。在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;
}
});