我运行此网站http://www.workingdays.us,其中许多链接是javascript操作(在主页内)我希望能够使用Google Analytics跟踪。
例如:
<a id='m1d' href='#am1d' onclick="increment_changed('nb_j',-1);" class='plus_moins' title='Remove one day to the period' >-</a>
但是在页面分析中显示每个javascript链接相同的“82%”(见截图)显然是错误的。
我认为已经遵循谷歌指南“增强链接归因”https://support.google.com/analytics/answer/2558867?hl=en,我不明白什么是错的
1-我的Google代码分析是最新的
<script type='text/javascript'>var _gaq = _gaq || [];
var pluginUrl =
'//www.google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setAccount', 'UA-17269285-3']);_gaq.push(['_trackPageview']);(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
2-我的所有链接都有唯一的ID
3-在Google解析管理面板中启用了增强型链接归因选项
答案 0 :(得分:0)
指向同一页面的链接存在同样的问题,例如只显示或隐藏页面元素的标签。我想看看哪些标签实际上被点击了,我还没有能够使用增强的链接归因。我也在每个标签链接中都有ID。
我想我此时看到的唯一解决方法是实际进行事件跟踪。这些数据不会在inPage上显示。
答案 1 :(得分:0)