jquery +循环遍历html表行,其中未选中复选框

时间:2013-06-10 11:29:35

标签: jquery checked

我有以下循环查找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的反义词是什么,因为我想循环查看未选中复选框的表格?

提前致谢。

2 个答案:

答案 0 :(得分:5)

使用:not selector

  $("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(){

}