DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 判斷多個input type=file是否有已經選擇好文件的代碼
判斷多個input type=file是否有已經選擇好文件的代碼
編輯:JQuery特效代碼     
表單中有多個<input type="file" name="uploadfile" contentEditable="false" style="width:80%">,
提交表單時需要判斷其中至少要有一個input已經選擇好文件。
. 代碼如下:
<input type="file" name="uploadfile" contentEditable="false" style="width:80%"><br>
<input type="file" name="uploadfile" contentEditable="false" style="width:80%"><br>
<input type="file" name="uploadfile" contentEditable="false" style="width:80%"><br>
<input type="file" name="uploadfile" contentEditable="false" style="width:80%"><br>
<input type="file" name="uploadfile" contentEditable="false" style="width:80%">

使用jQuery進行判斷:
. 代碼如下:
var fileFlag = false;
$("input[name='uploadfile']").each(function(){
if($(this).val()!="") {
fileflag = true;
return false;
}
});
if(fileFlag) {
alert("已有選擇好文件的");
}

只要fileFlag為true,就可以退出each循環,不需要再對剩下的input進行判斷。
在each中使用return false退出循環,使用return true結束當前次循環,進行下一次循環。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved