码迷,mamicode.com
首页 > Web开发 > 详细

非空与 jquery.each

时间:2017-07-21 19:52:51      阅读:214      评论:0      收藏:0      [点我收藏+]

标签: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;
                        
                         }
         
                     });
}

非空与 jquery.each

标签:return   result   false   cti   this   val   als   jquery   var   

原文地址:http://www.cnblogs.com/j2ee-web-01/p/7219246.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!