单击按钮即可将文本从一个文本框传输到另一个文本框?

发布于 2024-11-24 20:09:12 字数 160 浏览 0 评论 0原文

我正在将两部分的网络表单放在一起。第一页只是一个询问电子邮件地址和订阅按钮的文本框,第二页是实际的网络表单。我想知道 HTML 代码是什么,所以当用户在文本框中输入电子邮件并单击订阅时,输入的电子邮件如何传输到第二个表单上的电子邮件文本框。那么,当用户看到网络表单时,他们的电子邮件已经填写完毕了吗?谢谢。

I'm putting a two part web form together. The first page is simply a text box asking for an email address and a subscribe button, the second page is the actual web form. I'm wondering what's the HTML code so when a user inputs their email in the text box and clicks subscribe, how can the email inputted be transferred to the email text box on the second form. So when the user sees the web form their email is already filled in? Thanks.

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

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

发布评论

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

评论(3

清风疏影 2024-12-01 20:09:12

为此,您必须将原始电子邮件保存在 cookie 中。然后在正文 onload 的第二页上创建一个函数,从 cookie 中检索该值并将其设置到输入框。我建议使用 jQuery 来简化这项任务。

To do that you would have to save it the original email in a cookie. Then on the second page in the body onload create a function that retrieves that value from the cookie and sets it to the input box. I would recommend jQuery to ease the task.

浅忆流年 2024-12-01 20:09:12
  1. 将电子邮件存储在服务器上。
  2. 将电子邮件存储在 cookie 中
  1. Store email at server.
  2. Store email at cookies
看轻我的陪伴 2024-12-01 20:09:12

因为您没有使用任何服务器端编程语言或者不想告诉我们您可以使用 javascript
设置 onsubmit 以使用您的电子邮件设置 cookie,然后在下一个表单上输出该 cookie。

since you are not using any server side programming language or don't want to tell us you can use javascript
set onsubmit to setup a cookie with your email and then on next form output that cookie.

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