2

我正在尝试通过链接 JS 文件来验证输入来验证用户的输入。但是,当我单击带有错误数据的提交按钮时,表单被提交并且没有给出验证错误。

表格:

<form id="user_form" name="contactForm" action="#" method="GET" onsubmit="return validateForm();">

<p id="first_name" class="input_title">First name <span class="asterisk_red">*</span></p>

<!-- The HTML 5 'Required' attribute will not allow the form to be sent empty. -->
<input class="input_box" type="text" name="first_name" placeholder="Joe" />

<input id="submit_button" type="submit" name="submit" value="Submit"/>

</form>

还有我用来验证的 JS:

function validateForm(){

/* Validate the first name field of the form */
var fn = document.forms['contactForm'].first_name.value;

/* If the Name string is empty then return false and show warning. */
if (fn == ""){
    alert("First name must be filled out");
    document.forms['contactForm'].first_name.reset();
    return false;
}else if(fn.length <= 2){
    alert("Your first name must more than two characters");
    document.forms['contactForm'].first_name.reset();
    return false;
}


}
4

3 回答 3

1

我不确定您是否可以在元素上调用 reset()。我认为您在表单对象上使用该方法来清除所有字段。IE 和 FF 似乎没有问题,但 Chrome 似乎有。结果,chrome 不执行 javascript 并始终提交表单。这是小提琴表单提交和更新的代码:

function validateForm() {

            /* Validate the first name field of the form */
            var fn = document.forms['contactForm'].first_name.value.trim();

            /* If the Name string is empty then return false and show warning. */
            if (fn == "") {
                alert("First name must be filled out");
                document.forms['contactForm'].first_name.value = '';//Removed reset
                return false;
            } else if (fn.length <= 2) {
                alert("Your first name must more than two characters");
                document.forms['contactForm'].first_name.value = '';//Removed reset
                return false;
            }
            return true;//Added
        }
于 2013-02-02T19:06:58.777 回答
0

请检查这个结果:Form Validation jsFiddle 你有更多输入和 GET 的表单验证。

还请参阅有关如何构建 jQuery 验证的 Jquery 参考

或者只使用插件验证:

<script type="text/javascript" src="http://jzaefferer.github.com/jquery-validation/jquery.validate.js"></script>

$(document).ready(function(){
    $("#commentForm").validate();
  });
于 2013-02-02T18:46:06.117 回答
-1

您可以在表单中使用普通按钮并使用 javascript 函数提交表单。

于 2013-02-02T18:45:50.320 回答