标签:return result false cti this val als jquery var
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;
}
});
}
标签:return result false cti this val als jquery var
原文地址:http://www.cnblogs.com/j2ee-web-01/p/7219246.html