这就是我的尝试。
var items = $jointlist.find("input[id*='_conf']").filter(function() {
return this.checked == 'true'
});
但我不确定this.checked == 'true'
位
答案 0 :(得分:4)
我认为你应该使用:checked-selector之类的,
var items = $jointlist.find("input[id*='_conf']:checked")