$(function() {
$(\':checkbox[name=复选框name值]\').each(function() {
$(this).click(function() {
if ($(this).attr(\'checked\')) {
$(\':checkbox[name=复选框name值]\').removeAttr(\'checked\');
$(this).attr(\'checked\', \'checked\');
}
});
});
});