gpt4 book ai didi

javascript - 使用谷歌分析跟踪链接点击?

转载 作者:IT王子 更新时间:2023-10-29 03:10:54 26 4
gpt4 key购买 nike

我是 Google Analytics(分析)的初学者,我需要知道如何设置它,以便它可以跟踪我网站上的链接获得的点击次数?

例如我有一个链接:

<a href="https://google.com">link</a>

我知道我应该在某处放置一个 onClick 事件,但我不知道它如何链接到 Google Analytics?

这是正确的 Onclick 代码吗:

onClick="_gaq.push(['_trackEvent', 'Link', 'Click', 'Banner Advert1']);"

最佳答案

您可能想要使用事件跟踪 - 这是一个简单的 Javascript 函数,可以从链接上的点击事件中触发。您需要确保拥有 standard google tracking script也在你的页面上。

来自 Google Event Tracking Guide

Event Tracking is a method available in the ga.js tracking code that you can use to record user interaction with website elements, such as a Flash-driven menu system. This is accomplished by attaching the method call to the particular UI element you want to track. When used this way, all user activity on such elements is calculated and displayed as Events in the Analytics reporting interface. Additionally, pageview calculations are unaffected by user activity tracked using the Event Tracking method. Finally, Event Tracking employs an object-oriented model that you can use to collect and classify different types of interaction with your web page objects.

例子:

<a href="www.google.com" onclick="_gaq.push(['_trackEvent', 'Google Link', 'Action label', 'Additional info']);">link</a>

更新

以上内容适用于旧版本的 API - ga.js。如果您使用的是较新的 Universal tracking请引用the docs .实际上,传递的数据与以前相同,但调用不同。

使用较新 API 的事件跟踪示例:

<a href="www.google.com" onclick="ga('send', 'event', 'Google Link', 'Action label', 'Action Value');">link</a>

关于javascript - 使用谷歌分析跟踪链接点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21147487/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com