这是我 的 JSFiddle
我试图在单击复选框时添加一个类,尽管我似乎无法弄清楚如何以适合我已经拥有的代码的方式进行操作。
代码:
$(this).live("change keyup", function () {
var checkbox = $('#termscons').prop(':checked');
if (currid == "termcons") {
if (checkbox == 'checked') {
infobox.html("Accepted!");
infobox.addClass('good');
} else if (checkbox !== 'checked') {
infobox.html(replacehtml);
infobox.removeClass('good');
}
}
if ($('#termscons').next().hasClass('good')) {
$("#sendbtn").css("display", "block");
} else {
$("#sendbtn").css("display", "none");
}