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

jQuery 判断多个 input file 都不能为空

时间:2014-12-15 21:31:47      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   on   文件   div   log   

例如有两个图片上传的 input,都必须上传图片:

html

选择文件 1 :<input type="file" name="myfile[]" class="myfile">
选择文件 2 :<input type="file" name="myfile[]" class="myfile">

 

js

if($(".myfile").length == 2){

    $(".myfile").each(function(){ 

      if($(this).val() == "") { 

          alert("请上传图片!");
          flag = 0;
      } 
    }); 
   
}else if($(".myfile").length !=2 ){
    
    alert("图片不能少于2张!");
}

 

jQuery 判断多个 input file 都不能为空

标签:style   blog   io   color   sp   on   文件   div   log   

原文地址:http://www.cnblogs.com/dee0912/p/4165839.html

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