Posted in Javascript onDecember 12, 2013
涉及迭代,不可避免需要有非正常终止,或强制跳过的情况。在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; } });
jQuery的each终止或跳过示例代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@