Closed. This question needs to be more focused。它当前不接受答案。












想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。

5年前关闭。





我需要获取启用的输入字段的总数,以及已填充和非空的输入字段的总数。

最佳答案

$('input[type="text"]:enabled').filter(function(){return $(this).val()=="";}).length;

关于jquery - 如何获取和计数jquery中表单的所有启用的输入字段? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28518372/

10-12 12:30