提交表单后,我会被重定向到另一个表单,我希望用以前表单中的值填充电子邮件字段。我有下一个网址:
mysite.com/a/blog/?email=test%40email.com#form_20
如何使用javascript使用 test@email.com 填充id =“email”的输入?
更新
感谢@ MA-Maddin提供的有用链接:How to use JavaScript to fill a form on another page 有了这个,我收到的电子邮件如下: test%40email.com 。我想知道,如何结合
decodeURIComponent('%40')
提供的解决方案:
window.location.search.replace(/^\?email=/, '')
感谢。