单击按钮即可将文本从一个文本框传输到另一个文本框?
我正在将两部分的网络表单放在一起。第一页只是一个询问电子邮件地址和订阅按钮的文本框,第二页是实际的网络表单。我想知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为此,您必须将原始电子邮件保存在 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.
因为您没有使用任何服务器端编程语言或者不想告诉我们您可以使用 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.