0

嗨,我在 WordPress 插件设置options.php中使用普通表单提交。现在我喜欢在 WordPress admin 中使用基于 ajax 的表单提交。我可以通过onsubmit在表单中使用 ajax 进行表单提交

提交

  <form id="hhh" onsubmit="return sub();">
    <label>FirstName</label>
    <input type="text" name="fname" value="">
     <label>LastName</label>
    <input type"text" name="lname" value="">
    <input type="submit" class="button-secondary" value="save" />
    </form>

用于复位

<form method="post">
<input class="button-secondary" name="reset" type="submit" value="Reset" />
</form>

ajax 提交

function sub() {
    $.ajax({type:'POST', url: 'options.php', data:$('#hhh').serialize(), success: function(response) {

    }});

    return false;
}

我可以通过使用 ajax 提交轻松地保存值,但要重置值,我必须调用一个 php 函数,该函数将重置表单并添加新的默认值。我怎样才能使用 ajax 实现这一点?感谢

4

0 回答 0