我有一个注册表单。我想在客户端本身实现一些验证。我正在使用按钮提交表单。
<button onclick="check_fields();"></button>
function check_fields() {
if(document.contact_form.name.value=='')
document.contact_form.name.focus();
else
document.getElementById("contact_form").submit();
}
焦点没有发生,而是表单成功提交。请帮忙。