我有一个 jQuery 挂钩,它侦听名称wantProdTy
为“Mobile”或“Broadband”的复选框。我该怎么写这个?
值为“移动”的复选框:
$('input[type="checkbox"][name="wantProdTy"][value="Mobile"]').change(function() {
// do something
}
编辑 接受的答案:
$('input[type="checkbox"][name="wantProdTy"]').filter(function(){
return /(Mobile|Broadband)/i.test(this.value);
}).change(function() {
<% // check that the checkbox is checked %>
if($(this).is(':checked')) {
<% // check that mobile or broadband has not reached the maximum limit %>
maximumServiceLimitListener();
}
});