如果我在页面中有带有如下 ID 的复选框
a_chk1, a_chk2, a_chk3, b_chk1, b_chk2, b_chk3, c_chk1, c_chk2
如果我想检索 ID 以“a_”开头的复选框。下面的代码完成了我的工作
$(':checkbox').filter(function(){return $(this).prop('id').indexOf("a_") > -1;})
但它会遍历每个复选框并过滤所需的元素。但是is there any possibility of iterating through only qualified elements
。