JS控制数据列表只能单选

    技术2024-01-18  88

    $("#weaver").on("click", ".checkbox", function () { var test = $(this).prop("checked"); if (this.checked) { $(this).parentsUntil("tr").parent().siblings().find(".checkbox").each(function () { if (test == this.checked) { this.checked = false; } }); } })
    Processed: 0.029, SQL: 10