非空与 jquery.each
Posted 越过那个限制
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了非空与 jquery.each相关的知识,希望对你有一定的参考价值。
return ;只能跳出each方法 ,无法跳出aaa()
function aaa{
var result = false;
//非空
$("input[type=‘text‘]").each(
function () {
if ($(this).val().length <= 0) {
parent.layer.msg(‘当前选项不能为空!‘, { icon: 5 });
$(this).focus();
result = true;
}
});
}
以上是关于非空与 jquery.each的主要内容,如果未能解决你的问题,请参考以下文章