JavaScript 问题:如何将用户输入复制到隐藏字段中?
如何在安装了 jquery 的网站上以相同的形式将输入从文本类型输入元素传递到隐藏输入元素?
How can I pass input from a text-type input element into a hidden input element in the same form on a site that has jquery installed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果
input_1
是您要填充的输入的 ID,input_2
是您要填充的 ID,请使用:If
input_1
is the id of the input you want to populate, andinput_2
the id you want to populate from, use:文本更改时触发:
表单提交时触发:
查看其他 jQuery 事件。
Triggered when the text changes:
Triggered when the form submits:
Check out other jQuery Events.
假设每种类型只有一个字段:
如果有更多,请将 ID 添加到选择器
Assuming that you have only one field of each type:
If you have more add IDs to selectors