在使用jQuery的each()方法时,如何跳出循环呢?根据官方文档的说明,可以使用return false
进行break,如下:
We can break the $.each() loop at a particular iteration by making the callback function return false. Returning non-false is the same as a continue statement in a for loop; it will skip immediately to the next iteration.
示例:
function checkIsSearchForNothing() {
var result = false;
$("#searchForm").find("input[type='text']").each(function () {
if ($(this).val() != null && $(this).val() != '') {
result = true;
return false;
}
});
return result;
}
参考:
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com