$('input[type="checkbox"]').click(function() {
if($(this).is(':checked') == true) {
$('input[type="submit"]').removeAttr('disabled');
} else {
$('input[type="submit"]').attr('disabled','disabled');
}
});
文章標籤
全站熱搜
留言列表