$(function () {
var allBox = $(":checkbox");
allBox.click(function () {
if(this.checked){
allBox.removeAttr("checked");
$(this).attr("checked", "checked");
}
});
});
时间: 2025-01-10 17:13:41