在 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
}
});
})()