4

我有以下循环,可以相应地查找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与我想遍历未选中复选框的表格相反的是什么?

提前致谢。

4

2 回答 2

5

使用:not 选择器:

  $("table.authors-list")
     .find('input[type="checkbox"][name^="treated"]:not(:checked)')
     .each(function () {...});
于 2013-06-10T11:31:52.340 回答
1

只需尝试使用选择器

$("table.authors-list").find('input[type="checkbox"]name^="处理"]:not(:checked)').each(function () {

}

于 2013-06-10T11:36:22.990 回答