我在我的表单中的所有 HTML 下都有一些验证代码,这似乎阻止了我的复选框验证代码工作,一旦我在我的 HTML 下的代码周围添加 /* */ (使其无效)复选框,我就得出了这个结论验证码开始正常工作。顺便说一句,两个单独的验证都可以正常工作。谁能解释为什么会发生这种情况,因为我需要两个验证才能工作?这是我的代码:
<script>
function validateCheckBoxes(theForm) {
if (!theForm.declare.checked) {
alert ('You must tick the checkbox to confirm the declaration');
return false;
} else {
return true;
}
}
</script>
<form name="form" method="POST" action="<?php echo $_SERVER["PHP_SELF"];?>" id="eoi" onsubmit="return validateCheckBoxes(this);">
<b>Post Code</b>
<br>
<input type="text" id="post" name="post"><?php echo $msgp; ?>
<b>Declaration</b>
<input type="checkbox" name="declare" id="declare">
<input type="submit" name="submit" id="submit" value="submit">
</form>
<script>
var form = document.getElementById('eoi'),
validNumbers = [2474,
2750,
2753,
2760,
2777];
form.onsubmit = function() {
var userInput = document.getElementById("post"),
numb = parseInt(userInput.value, 10);
if ( validNumbers.indexOf(numb) == -1 ) {
alert("Please enter a correct postcode");
return false;
} else {
return true;
}
}
</script>