一些表单代表父对象,如果它们用于“父”对象,我希望在每个表单中禁用大多数字段。是否有捷径可寻?
josh
问问题
80 次
1 回答
0
最简单的方法是给字段一个特定的语义类,然后使用jQuery禁用该类的所有字段。假设表单都包含在某个更大的容器中,其 id 为formgroup
并且您dependent-field
用作类名,您可以使用如下内容:
// Set the 'disabled' attribute on every dependent field in this group of forms.
$('#formgroup').find('.dependent-field').attr('disabled', true);
于 2009-03-23T21:53:17.237 回答