如何获取链接点击信息?

发布于 2024-08-05 23:26:47 字数 107 浏览 7 评论 0原文

我想知道如何从链接点击中获取信息。

例如,用户登录并单击链接。可以记录这些信息吗?点击的链接数量、哪些链接等等……诸如此类。

我不知道该怎么做。有什么想法/信息链接吗?

I am wondering how it is possible to get information from link clicks.

For example, a user is logged in and clicks a link. Is it possible to record that information? Number of links clicked, which ones, etc... things like that.

I have no idea how to do this. Any ideas / links to information?

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

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

发布评论

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

评论(3

魂ガ小子 2024-08-12 23:26:47

您可以使用 JavaScript 将事件绑定到链接并以这种方式完成日志记录。
请参阅此问题

您还可以尝试在您的网站上设置 Google Analytics;这是一项免费服务,可为您的网站提供大量数据收集。这是一篇博客文章,详细介绍了 使用 Google Analytics 跟踪点击

You could use JavaScript to bind an event to your links and have the logging done that way.
See this question.

You also might try looking at setting up Google Analytics on your site; it's a free service that offers incredible amounts of data collecting for your site. Here's a blog post that details tracking clicks with Google Analytics.

莳間冲淡了誓言ζ 2024-08-12 23:26:47

您有多种选择:

  • 从 Web 服务器上的日志中读取统计信息
  • 通过不同的 URL 进行重定向
  • 使用您自己的在 onclick 属性中执行的 JavaScript 代码

更新:有 ping a 元素的 属性。然后,Web 浏览器将向指定链接发送通知。不过在 HTML5 中。

You have several options:

  • read the statistics from logs on the web server
  • use redirects through different URL
  • use your own JavaScript code executed in onclick attribute

Update: there is ping attribute for a element. Web browser will then send a notification to the specified link. In HTML5 though.

壹場煙雨 2024-08-12 23:26:47

一种方法是让用户通过您自己的重定向链接。因此,链接将转到 http://yourserver.com/redir.aspx?realink=< url编码链接>

One way to do that is by passing the user through a redirect link of your own. So the links go to http://yourserver.com/redir.aspx?realink=<url encoded link>

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