我有当前代码来跟踪页面上滚动的百分比。
ga('create', 'UA-68653010-1', 'auto');
window.onbeforeunload = function(){
var viewportHeight = $(this).height();
var progress = $(this).scrollTop() / ($(document).height() - viewportHeight);
ga('send', 'event', 'scroll', Math.round(progress*100));
};
但是每当事件发送命中时,它返回的不同于预期的,其中一个参数是:
exd:ReferenceError:ga未定义
答案 0 :(得分:2)
以正确的顺序包含您的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-68653010-1', 'auto') ;
</script>
...
然后包含主JS文件,其中包含onbeforeunload
处理程序:
window.onbeforeunload = function(){
var viewportHeight = $(this).height();
var progress = $(this).scrollTop() / ($(document).height() - viewportHeight);
ga('send', 'event', 'scroll', Math.round(progress*100));
};