JavaScript 问题:如何将用户输入复制到隐藏字段中?

发布于 2024-07-29 18:54:23 字数 53 浏览 2 评论 0原文

如何在安装了 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 技术交流群。

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

发布评论

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

评论(4

顾挽 2024-08-05 18:54:23

如果 input_1 是您要填充的输入的 ID,input_2 是您要填充的 ID,请使用:

$("#input_1").val($("#input_2").val())

If input_1 is the id of the input you want to populate, and input_2 the id you want to populate from, use:

$("#input_1").val($("#input_2").val())
又爬满兰若 2024-08-05 18:54:23

文本更改时触发:

$("#text_id").change(function(){
  $("#hidden_id").val($("#text_id").val())
});

表单提交时触发:

$("#form_id").submit(function(){
  $("#hidden_id").val($("#text_id").val())
});

查看其他 jQuery 事件

Triggered when the text changes:

$("#text_id").change(function(){
  $("#hidden_id").val($("#text_id").val())
});

Triggered when the form submits:

$("#form_id").submit(function(){
  $("#hidden_id").val($("#text_id").val())
});

Check out other jQuery Events.

安人多梦 2024-08-05 18:54:23
$("#id_of_hidden_input").val($("#id_of_text_input").val());
$("#id_of_hidden_input").val($("#id_of_text_input").val());
空名 2024-08-05 18:54:23

假设每种类型只有一个字段:

$('input[type=hidden]').val($('input[type=text]').val())

如果有更多,请将 ID 添加到选择器

Assuming that you have only one field of each type:

$('input[type=hidden]').val($('input[type=text]').val())

If you have more add IDs to selectors

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文