How to check an input type="file" has a file or not using jquery?
I have a file upload control <input id="File1" type="file" />
in my page... How to check an input type="file" has a file or not using jquery on click of 开发者_开发技巧a button upload
?
if (jQuery('#File1').val()) { /* There are files */ }
You should use "required" instead of JQuery. By just one attribute it'll check input=file has file or not. Example:
<input type="file" required/>
$('#upload').bind('click', function(e){
if( $('#File1').val() != ""){
// file selected
}
else{
// no file selected
}
});
精彩评论