使用按钮从其他表单重置表单验证

reset form validation from in an other form with button

我正在使用 validation.io 但我遇到了问题。 我没有重置字段验证 form1,它在 form2 中工作正确。

我尝试了触发器但没有成功。

我该怎么办?朋友们有什么想法吗?

<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'));
}

form="form2" 属性添加到 rest 按钮。详见this

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>