//方法1$('inputp[type=checkbox]').click(function(){ $(this).attr('checked','checked').siblings().removeAttr('checked');});//方法2$('inputp[name=checkbox]').click(function(){ $(this).attr('checked','checked').siblings().removeAttr('checked');});