我一直在尝试实现一些 JavaScript,它会禁用提交按钮,直到所有字段都被填满。我在这里找到了一个很棒的方法:Disabling submit button until all fields have values。Hristo 提供了一个链接,正是我在这里需要的:http: //jsfiddle.net/qKG5F/641/。
我的问题是,当我尝试整理一个完整的“最小工作示例”时,我完全被难住了。我确定我缺少一些小方面,但这是我想出的:
<html>
<head>
<title></title>
<style type="text/css">
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
(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 https://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
} else {
$('#register').removeAttr('disabled'); // updated according to https://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
}
});
})()
</script>
</head>
<body>
<form>
Username<br />
<input type="text" id="user_input" name="username" /><br />
Password<br />
<input type="text" id="pass_input" name="password" /><br />
Confirm Password<br />
<input type="text" id="v_pass_input" name="v_password" /><br />
Email<br />
<input type="text" id="email" name="email" /><br />
<input type="submit" id="register" value="Register" disabled="disabled" />
</form>
<div id="test">
</div>
</body>
我只是复制/粘贴并添加了我认为使页面正常工作所必需的内容,但我的提交按钮仍然永久禁用。我缺少什么简单的部分来完成这项工作?
谢谢!