防止在form.reset()上进行验证

时间:2016-02-10 16:00:38

标签: javascript html input

我有以下html表单:

<body>
    <div>
        <form id="callBackForm" class="custom eight form" method="post" enctype="multipart/form-data" action="thank-you.php">
            <div class="callBackFormDivs"> 
                <div style="padding:0;" class="four mobile-one columns">
                    <label for="name" class="left inline">Name</label>
                </div>
                <div class="eight mobile-three columns">
                    <input class="left" id="name" name="name" required type="text" />
                </div>
            </div>
            <div class="callBackFormDivs">
                <div style="padding:0;" class="four mobile-one columns">
                    <label for="Age" class="left inline">Age</label>
                </div>
                <div class="eight mobile-three columns">
                    <input class="left" id="Age" name="Age" required type="text" />
                </div>
            </div>
            <div class="callBackFormDivs callBackFormButtonContainer">          
                <div>
                    <input type="submit" value="Submit" alt="Submit">
                    <button class="button" style="font-weight:normal; height:34px; float:right;" onClick="fnClearForm()">RESET</button>
                </div>                  
            </div>  
        </form>
    </div>

</body>

请注意,字段上设置了必需的属性。如果用户尝试在不输入任何文本的情况下提交表单,则会向用户显示错误消息。

页面上有一个重置按钮,使用form.reset()功能清除字段,如下所示:

function fnClearForm()
{
    document.getElementById('callBackForm').reset();                    
}

问题是,当表单重置时,会导致验证触发,并向用户显示错误消息。

如何防止这种情况?

我知道我可以编写一个自定义验证器来解决这个问题,但我认为最好找到一种方法让这个验证工作正常。

我确实找到了一些相关的问题,但没有一个能解决这个问题。

1 个答案:

答案 0 :(得分:3)

使用html属性type创建重置按钮。

<button type="reset" value="Reset">Reset</button>

http://www.w3schools.com/tags/att_button_type.asp

小提琴:https://jsfiddle.net/2t2Lhnb8/