标签:
$(function () {
var allBox = $(":checkbox");
allBox.click(function () {
if(this.checked){
allBox.removeAttr("checked");
$(this).attr("checked", "checked");
}
});
});
标签:
原文地址:http://www.cnblogs.com/ch-zaizai/p/5147357.html