Posted in Javascript onJune 23, 2015
例如有两个图片上传的 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 都不能为空的例子
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@