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

JS 验证一组input框是否为空的方法

时间:2016-08-03 22:11:19      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

function checkInput() {
  var $tr = $("#tb_confirmed .scrollContent").find("tr");
  var flag = 0;
  var antiqueTypes = [];
  
  $tr.each( function( index, item ){
      var type = $(item).find("input[type=‘text‘]").val();
          
      antiqueTypes.push(type);

  }); 

  $.each(antiqueTypes, function(index, item){
    
       if( item.length == 0 ){
        flag += 1;  
        $("order-tips").find("span").text("请输入商品物流单号");
     }
  });
  return flag;

}

// 调用此方法, 可以在别的方法中调用它

if( checkInput > 0 ){
  $("order-tips").find("span").text("请输入商品物流单号");
   return false;

} else {

   ajax() // 请求
}

  

JS 验证一组input框是否为空的方法

标签:

原文地址:http://www.cnblogs.com/zsongs/p/5734478.html

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