单击电子邮件中的链接以填充文本字段
当用户单击链接时,我需要填充文本字段。我已经使用 javascript 成功完成了此操作,但现在链接需要位于 HTML 电子邮件中,并且大多数电子邮件软件都忽略 javascript。
还有其他办法吗?
我需要什么 ID 才能让用户在 HTML 电子邮件中单击“进行查询”,该电子邮件链接到我的主页,其中文本字段将填充代码,例如“email_offer_1”
I need to populate a textfield when a user clicks on a link. I have successfully done this with javascript, but the link now needs to be in a HTML email and most email software disregards javascript.
Any other way?
What I need id for the user to click on 'Make an enquiry' in my HTML email which links to my homepage, where a textfield will be populated with a code, for example 'email_offer_1'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过散列或通过查询字符串 将相关信息传递到 HTML 页面参考
因此,电子邮件中的链接可能会显示
Inquiries Here
,然后是 HTML 页面可以是设置以检查其哈希值以获取有关就绪的信息。You could pass the relevant information to the HTML page via the hash, or via the query string reference
So the link in the e-mail may say
<a href="mysite.com/inquiry#_56">Inquiries Here</a>
, and then the HTML page can be set up to check it's hash for information on ready.