例如有两个图片上传的 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张!");
}
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“jQuery判断多个input file 都不能为空的例子”评论...