问题
I'm trying to track download clicks with Google Analytics but nothing shows up in my statistics. (I've waited 4 days) This is my code:
HTML:
<a onclick="javascript: pageTracker._trackPageview ('/download/version/black');" href="http://www.example.com/example.zip" target="_blank">link text</a>
Google Analytics:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11111111-1']);
_gaq.push(['_setDomainName', 'example.com']);
_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);
})();
</script>
Why is it not working? Thanks. Uli
回答1:
You should use GA events for this.
Check the docs for the _trackEvent
method.
回答2:
You have to push your tracking events to the globally available array:
<a onclick="javascript:_gaq.push(['_trackPageview', '/download/version/black']);" href="http://www.example.com/example.zip" target="_blank">link text</a>
I think you are mixing two versions of the tracking API together..
Thanks!
回答3:
you're loading the async GA but trying to run the old urchin API.
<a href="foo.zip" onclick="_gaq.push(['_trackPageview', this.href]);">download</a>
should work just fine
来源:https://stackoverflow.com/questions/9278760/google-analytics-download-clicks-tracking