我意识到有很多关于不进行GA目标跟踪的问题。在发表我的问题之前,我完成了我的家庭作业并阅读了很多文章。
以下是我的问题...这是我用来创建代码的文档:https://developers.google.com/analytics/devguides/collection/analyticsjs/events
我正在使用analytics.js版本
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-xxxxxxxxxxx-x', 'mywebsite.com');
ga('send', 'pageview');
</script>
我尝试通过纯javascript和jQuery实现代码,但似乎都不起作用。 这是我的代码:
要跟踪的链接:
<a href="/contact-us-fivefive/" id="cta-footer-btn">Get In Touch Today</a>
jQuery方法:
<script type="text/javascript" src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#cta-footer-btn').on('click', function() {
ga('send', 'event', 'CTA_footer', 'contact_footer');
});
});
</script>
我也尝试过纯粹的js方法:
<script>
var downloadLink = document.getElementById('cta-footer-btn');
addListener(downloadLink, 'click', function() {
ga('send', 'event', 'CTA_footer', 'contact_footer');
});
/**
* Utility to wrap the different behaviors between W3C-compliant browsers
* and IE when adding event handlers.
*
* @param {Object} element Object on which to attach the event listener.
* @param {string} type A string representing the event type to listen for
* (e.g. load, click, etc.).
* @param {function()} callback The function that receives the notification.
*/
function addListener(element, type, callback) {
if (element.addEventListener) element.addEventListener(type, callback);
else if (element.attachEvent) element.attachEvent('on' + type, callback);
}
</script>
似乎都没有跟踪链接点击次数。
任何想法或建议,为什么这不起作用将不胜感激。
谢谢!
答案 0 :(得分:1)
确保您在文档的head部分插入了分析跟踪代码(不是必需的,但在对ga()函数进行任何引用之前,请确保所需的库与ga对象一起完全加载),以及还要确保在使用之前还加载了jQuery。您可以使用控制台(通常是浏览器中的F12)来检查是否抛出任何错误。这些是验证您是否正确安装了跟踪的一般步骤。
如果您刚安装了数据,可能需要一段时间才能显示在报告中,所以不要担心。您可以安装GADebug extension for Chrome以检查是否正确发送了跟踪信标。
此外,您可以使用jQuery中的click()
函数。它对我来说很好。
<script type="text/javascript" src="https://code.jquery.com/jquery-1.10.2.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#cta-footer-btn').click( function() {
ga('send', 'event', 'CTA_footer', 'contact_footer');
});
});
</script>
希望有所帮助! :)