标签: jquery
我需要获取启用的输入字段的总数,以及填充和非空的输入字段的总数。
答案 0 :(得分:3)
$('input[type="text"]:enabled').filter(function(){return $(this).val()=="";}).length;