2012年10月29日星期一

checkbox单选

checkbox单选

$(':checkbox[class=topcheckbox]').each(function () {            $(this).click(function () {                if ($(this).attr('checked')) {                    $(':checkbox[class=topcheckbox]').removeAttr('checked');                    $(this).attr('checked', 'checked');                }            });        });

TAG: