计算空输入字段?
如何计算
- 多少空输入(type =“file”)字段?
使用你的例子
文档中的脚本。已经完成
$(".count").click(function(){ var count = $('#uploadimages input:file[value=""]').length alert(count); })
$('#uploadimages input:file[value=""]').length
不幸的是,Murtaza接受的做法对我不起作用。 我不知道为什么。 https://jsfiddle.net/7vLrhqyw/
这有效:
$(".count").click(function () { var count=0; $('#uploadimages input:file').each(function(){ if($(this).val()=="")count++; }); alert(count); });