1

我使用的是validation.io,但我有问题。我没有重置表单1的字段验证,它在表单2中工作正常。

我试过触发但没有用。

我能怎么做?你知道我的朋友吗?

<form id="form1">
    <input type="reset" click="resetForm2()">
</form>

<form id="form2">
    <input id="text1" type="text" value="value">
    <input id="text2" type="text" value="value">
    <input id="text3" type="text" value="value">
    <input id="text4" type="text" value="value">
    .
    .
    .
    <input id="text16" type="text" value="value">
    <input type="reset" click="resetForm2()">
</form>

表单验证重置方法

function reserForm2()
{
    $('#form2').data('formValidation').resetForm($('#form2'));
}
4

1 回答 1

2

form="form2"属性添加到休息按钮。有关详细信息,请参阅

function reserForm2()
{
    $('#form2').data('formValidation').resetForm($('#form2'));
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form id="form1">
    <input type="reset" click="resetForm2()" form="form2">
</form>

<form id="form2">
    <input id="text1" type="text" value="value">
    <input id="text2" type="text" value="value">
    <input id="text3" type="text" value="value">
    <input id="text4" type="text" value="value">

    <input id="text16" type="text" value="value">
    <input type="reset" click="resetForm2()">
</form>

于 2016-05-27T22:42:02.137 回答