是否可以在jQuery中执行类似的操作来选择多个输入控件,以便我可以同时在所有这些上绑定onchange事件。
jQuery('div input[type=(text|select|radio|checkbox)]')
或者是这样的jQuery('div input[type=*]')
?
答案 0 :(得分:2)
查看:input
选择器:
jQuery("div :input").change(...
API声明它“选择所有输入,textarea,select和按钮元素”。
如果您要在容器中选择输入类型的子集,可以使用multiple selector,如下所示:
jQuery("div input[type=radio], input[type=text]").change(...
答案 1 :(得分:1)
jQuery('div input').change(function() {
//code
});