在asp页面中使用jquery启用或禁用表单完成时的提交按钮。 我想在用户填写所有必填字段时启用按钮并更改我的asp页面上的按钮类 请帮助我,我找到了很多代码,但即便是我的工作 请帮我 我试过了
(function() {
$('form > input').keyup(function() {
var empty = false;
$('form > input').each(function() {
if ($(this).val() == '') {
empty = true;
}
});
if (empty) {
$('#register').attr('disabled', 'disabled'); // updated according to http://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
} else {
$('#register').removeAttr('disabled'); // updated according to http://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
}
});
})()