jquery过滤器返回所有匹配remove()

时间:2017-05-25 07:23:36

标签: javascript jquery filter

如果单击选中的复选框,则会在编写removes()输入val值与复选框中的val值匹配的代码时遇到问题,使用每个复选框时都会遇到问题被删除。

问题
当有两个或多个选中的复选框时,即使val的值相同,也只会删除第一个复选框。

onlyremove.click(function () {
    var chk = $("input[name='cbx']:checked").length;
    $("input[name='cbx']:checked").each(function() {
        pickbtn.find('.ordering').filter(function () {
            return $("input[name='cbx']:checked").val() && $(this).find('.number').val() == $("input[name='cbx']:checked").val();
        }).text('rldd'),alert('123123'), --num;
    });
});

0 个答案:

没有答案