html Code:
$(document).ready(function(){
$("-sharprememberMe").change(function(){
if($(this).is(":checked") == true){
alert("");
$("-sharpregisterBtn").removeClass("disabledBtn").addClass("enabledBtn");
}else{
//
$("-sharpregisterBtn").removeClass("enabledBtn").addClass("disabledBtn");
}
});
});
I added pop-up window debugging, the expected effect should be pop-up enabled, but not.
I checked again before the pop-up window.
to put it simply, it is not checked by default. After the page is loaded, the button is not disabled