我在我的表单提交上添加了一个验证检查,但问题是它阻止了表单提交,但它也重置了我的整个表单。请让我知道我怎样才能return false
停止表单提交并停止重置整个表单。谢谢
function error()
{
if (!$("#form1 input[name='radio']:checked").val()) {
alert('Error: Please select any check box!');
return false;
}
else {
//alert('One of the radio buttons is checked!');
}
}
<form name="form1" id="form1">
<input name="Name" type="text" id="name" size="70" />
<input name="Age" type="text" id="age" size="70" />
<input type="radio" name="radio" id="A18" value="18" />
<input type="radio" name="radio" id="A19" value="19" />
<input type="submit" onclick="error();" />
</form>