例如有两个图片上传的 input,都必须上传图片:
html
选择文件 1 :选择文件 2 :
js
if($(".myfile").length == 2){ $(".myfile").each(function(){ if($(this).val() == "") { alert("请上传图片!"); flag = 0; } }); }else if($(".myfile").length !=2 ){ alert("图片不能少于2张!");}
本文共 273 字,大约阅读时间需要 1 分钟。
例如有两个图片上传的 input,都必须上传图片:
html
选择文件 1 :选择文件 2 :
js
if($(".myfile").length == 2){ $(".myfile").each(function(){ if($(this).val() == "") { alert("请上传图片!"); flag = 0; } }); }else if($(".myfile").length !=2 ){ alert("图片不能少于2张!");}
转载地址:http://cxqga.baihongyu.com/