如何使用 Javascript 重置插入输入框的数据
我是学习者
谢谢大家帮助我:)
我如何通过重置功能按钮来重置所有输入框,该按钮能够将原始数字重新输入到输入框,例如我想在重置按钮时添加此数字 例如,当我输入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是表单,则可以输入 type="reset"。
所以只需将按钮更改为:
If you are in a form you can make an input of type="reset".
So just change your button to:
只需使用 value 属性将默认值添加到每个元素并具有重置按钮,不要忘记表单
just add the default values to each element using the value attribute and have reset button, don't forget the form