使用 Hyperscript 清除提交时的所有输入字段

Posted

技术标签:

【中文标题】使用 Hyperscript 清除提交时的所有输入字段【英文标题】:Clear all input fields on submit using Hyperscript 【发布时间】:2022-01-08 23:41:00 【问题描述】:

我正在使用 htmx 和超脚本,我希望在提交时清除以下表单中的所有输入字段:

<form hx-post="/example" hx-target="#table tbody" hx-swap="beforeend"
      _="<what should I write here??>">
        <label class="control-label" for="firstNameInput">First Name</label>
        <input id="firstNameInput" name="firstName" class="form-control" type="text" required placeholder="John"/>
        
        <label class="control-label" for="lastNameInput">Last Name</label>
        <input id="lastNameInput" name="lastName" class="form-control" type="text" required placeholder="Doe"/>
        <button class="btn btn-primary">Add User</button>
    </div>
</form>

我尝试将&lt;what should I write here??&gt; 替换为例如on submit put '' into &lt;input/&gt;on submit put '' into &lt;input[value]/&gt; 以及许多其他组合,但我无法完成这项工作。

问:如何在提交表单时清除所有输入字段?

【问题讨论】:

【参考方案1】:

试试on htmx:afterRequest reset() me

【讨论】:

这行得通!但是你介意解释一下原因吗? :) “reset()” 是表单上的一个方法吗? 是的,reset 记录在这里 developer.mozilla.org/en-US/docs/Web/API/htmlFormElement/reset

以上是关于使用 Hyperscript 清除提交时的所有输入字段的主要内容,如果未能解决你的问题,请参考以下文章

在提交时清除所有 textInput 字段反应本机

提交表单 ASP.NET 时清除所有输入字段

使用 setState 提交后清除表单输入

使用 laravel 框架提交数据后清除表单输入

使用jquery.form.js提交表单上传文件

用ant-design在react js中提交后清除表单输入字段值