Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有多个输入的 HTML 表单,其中一些是“选择”...所有输入都是强制性的,因此我需要检查所有输入是否都有值...为此,所有“选择”元素都有默认选择 value=0 的“nd”选项......并且“保存”按钮被“禁用”..
我想使用 JQuery 来检查所有“选择”是否有一个选项“选择”,其值不同于 0,如果是,则“启用”“保存”按钮......
var allSelect = $('select').filter(function() { return this.value != 0 ; }).length === $('select').length; $(':submit').prop('disabled', !allSelect);
工作样本