Saturday, June 3, 2017

[jQuery] 如何讓 checkbox 像 radio button 一樣 只能單選?

$("input[name='mycheckbox[]']").click(function() {
    $("input[name='mycheckbox[]']").not(this).removeAttr("checked");
});

No comments:

Post a Comment