使用 Cookie 来“输入”信息使用 document.referrer 进行推荐跟踪?

发布于 2024-11-15 11:46:30 字数 249 浏览 3 评论 0原文

如果有人从 nextag.com 访问我的网站,浏览几个页面并在订购后进入我的“谢谢”页面,是否有一种方法(出于所有强烈的目的)在“谢谢”页面上放置一个警报,说“谢谢”来自nextag”。我可以利用这个答案在“谢谢”页面上执行其他代码。

我知道我使用 document.referrer 来获取所有传入的推荐,但是,如果浏览了网站上的几个页面,它就会丢失其“输入”推荐,我需要获取“输入”推荐并在“谢谢”页面上使用它。我是否以某种方式使用 cookie 来做到这一点?

If one comes to my site from say nextag.com, goes through a couple pages and gets to my Thank You page after ordering, is there a way to (for all intense and purposes) put an alert on the Thank You page saying "Thanks for coming from nextag". I can utilize this answer to do other code on the Thank You page.

I know I use document.referrer to grab all incoming referrals, however if one goes through a few pages on the site it looses its "entering" referral, I need to grab the "entering" referral and use it on the Thank You page. Do I somehow use cookies to do this?

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

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

发布评论

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

评论(1

丘比特射中我 2024-11-22 11:46:30
  • 可以使用cookies(来自Javascript)。您可以在这里详细阅读有关使用 Javascript 进行 Cookie 管理的信息,例如:QuirksMode 上使用 Javascript 的 Cookie

  • 使用 jQuery,有一些用于 cookie 管理的插件,例如 jquery-cookie

  • 另一种选择是在服务器端(例如会话)进行管理,因为引荐来源网址将在请求的 HTTP 标头中可用,但您尚未指定要使用哪种语言在那里使用,所以它可能不适合您。

  • It is possible to do with cookies (from Javascript). You can read about cookie management with Javascript in great detail for example here: Cookies with Javascript on QuirksMode

  • Using jQuery, there are plugins out there for cookie management like jquery-cookie.

  • Another option would be to manage this on the server side (sessions for example), because the referrer will be available in the HTTP header of the request, but you haven't specified which language you use there, so it might not be an option for you.

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