如何使用 Javascript 重置插入输入框的数据

发布于 2024-11-07 05:57:59 字数 305 浏览 0 评论 0原文

我是学习者

谢谢大家帮助我:)

我如何通过重置功能按钮来重置所有输入框,该按钮能够将原始数字重新输入到输入框,例如我想在重置按钮时添加此数字 例如,当我输入 50 时,单击 = 2

,现在希望有一个按钮,这样当单击时,数字 2 就会替换到该输入框中。

这是我到目前为止所做的。请检查。

http://jsfiddle.net/eSUSA/

感谢任何回复和帮助

I`m Learner

Thank you all for helping me :)

How can i reset all the inputbox by having reset function button which give the ability to re-enter the original number to the inputbox, for example i want to add this number when reset button click = 2

when i type for example 50 and now like to have a button so when clicked number 2 replaced into that input box.

here what i have done so far. please check.

http://jsfiddle.net/eSUSA/

Appericiate for any reply and help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等往事风中吹 2024-11-14 05:57:59

如果您使用的是表单,则可以输入 type="reset"。

所以只需将按钮更改为:

<input type="reset" value="Reset">

If you are in a form you can make an input of type="reset".

So just change your button to:

<input type="reset" value="Reset">
烂人 2024-11-14 05:57:59

只需使用 value 属性将默认值添加到每个元素并具有重置按钮,不要忘记表单

<form id="myForm">
    <input name="t1" type="text" size="1" id="t1" value="2"/>
    <input type="reset" value="Reset"/>
</form>

just add the default values to each element using the value attribute and have reset button, don't forget the form

<form id="myForm">
    <input name="t1" type="text" size="1" id="t1" value="2"/>
    <input type="reset" value="Reset"/>
</form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文