我有带有普通谷歌分析代码的基本单页网站:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-##-##']);
_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);
})();
然而,我的链接就像书签——它们基本上是在单页上滑动。单击时,我的链接本质上是页面,但在同一模板中-它们滑动以显示内容元素。
<a href="#section-3">about us</a>
有没有办法可以更新 Analytics 跟踪器或以某种方式跟踪链接?所以在分析中,我会看到人们在一个页面上花费了很多时间等等。