JavaScript - 如何使用按钮将数字插入到输入框
请帮忙,如何通过 ID 将数字插入输入框。
想要在按下按钮时将数字 (5) 插入到此特定输入框中点击。
那么,按下输入框中显示的“插入”按钮 5 号,
这是正确的吗?
function insert () {
document.getElementById('musicstock1').innerHTML = "5";
}
预先感谢您
的回复...请检查@
http://jsfiddle.net/JxfcH/#
没有工作..
Please help, How to insert number into inputbox by Id.
<input name="table1" type="text" size="1" id="musicstock1"/>
Would like to insert for example number (5) into this particular input box when button clicked.
So push the "Insert" button number 5 show on inputbox
is this correct?
function insert () {
document.getElementById('musicstock1').innerHTML = "5";
}
Thank you in advance
Appericiate for Replys... Please Check @
http://jsfiddle.net/JxfcH/#
Not Worked..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须为输入框的“value”属性分配值。
you must assign value to the "value" attribute of the input box.
你想要:
You want: