有没有一种简单的方法可以在 Google Analytics 中跟踪页面链接位置?

发布于 2024-10-25 05:31:55 字数 225 浏览 10 评论 0原文

我只是想知道用户是否通过左侧导航、顶部导航、底部导航、条目正文等进行点击。 此 Omniture 插件。我用谷歌搜索了一下,但我的谷歌搜索措辞一定不正确。

I just want to be able to know if a user is clicking via the left nav, top nav, bottom nav, entry body, etc. The equivalent functionality of this Omniture plugin. I googled around but I must not be phrasing my Google searches correctly.

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

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

发布评论

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

评论(1

私藏温柔 2024-11-01 05:31:55

您正在寻找的术语是“clickmap”。无论如何,GA 没有内置跟踪功能,但您可以使用 事件跟踪

总体原则是每当单击链接时就触发事件,传递一些值。由于您只需要基本信息(用户点击页面的哪个区域,分为几个部分),因此您基本上只需对所有链接执行以下操作:

<a href="url" onClick="_gaq.push(['_trackEvent', 'clickmap', 'left nav']);"some link</a>

“clickmap”将是主要类别,并且对所有链接具有相同的值您的链接和“左侧导航”将替换为页面的指定区域。

您当然可以将其硬编码到所有链接中,但希望您的 html 编码得足够好,使其更加编程化,例如,使用像 jQuery 这样的框架将其动态附加到 X 区域中的所有链接。

The term you are looking for is "clickmap". Anyways, GA doesn't have built-in tracking for this but you can imitate it easy enough with event tracking.

The overall principle is to trigger an event, passing some values, whenever a link is clicked. Since you are just wanting basic information (what area of the page user clicks on, divided in sections), you would essentially just do the following for all your links:

<a href="url" onClick="_gaq.push(['_trackEvent', 'clickmap', 'left nav']);"some link</a>

'clickmap' would be the main category and would be the same value for all your links, and 'left nav' would be replaced with the designated area of the page.

You can of course hardcode it into all of your links but hopefully your html is coded well enough to be more programmatic about it, like for instance, use a framework like jQuery to dynamically append it to all the links in X area.

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