DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> jQuery判斷多個input file 都不能為空的例子
jQuery判斷多個input file 都不能為空的例子
編輯:JavaScript綜合知識     

         這篇文章主要介紹了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張!");
}

 

 
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved