我需要从所有选中的复选框的HTML表中获取选中的值

$('#table').input[checkbox].checked.getall();


我需要这样的东西吗?

最佳答案

用这个

$IDs = $("#table input:checkbox:checked").map(function () {
    return $(this).attr("id");
}).get();

10-07 17:23