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

例如有两个图片上传的 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张!");
}

 

posted @ 2014-12-15 20:45  nemo20  阅读(3667)  评论(0编辑  收藏  举报
访客数:AmazingCounters.com
2016/05/17 起统计