我有以下循环查找checked checkboxes
并相应地编辑每一行。
$("table.authors-list").find('input[type="checkbox"][name^="treated"]:checked').each(function () {
var row = $(this).closest('tr'),
priceInput = row.find('input[name^="transportprice"]');
priceInput.val(treatedtransportcostperton.toFixed(2));
});
:checked
的反义词是什么,因为我想循环查看未选中复选框的表格?
提前致谢。
答案 0 :(得分:5)
$("table.authors-list")
.find('input[type="checkbox"][name^="treated"]:not(:checked)')
.each(function () {...});
答案 1 :(得分:1)
尝试使用选择器
$(“table.authors-list”)。find('input [type =“checkbox”] name ^ =“treated”]:not(:checked)')。each(function(){
}