我正在使用此行触发事件,以便查看用户向下滚动的页面
docTitle: window.document.title
...
_gaq.push(['_trackEvent', 'Scroll', window.docTitle, 'scrolled']);
这项工作非常适合异步语法(ga.js)和页面标题显示在Google Analytics中,但是当我想对analytics.js执行相同操作时
docTitle: window.document.title
...
ga('send', 'event', 'Scroll', window.docTitle, 'scrolled');
我没有获得页面标题但只看到'window.docTitle'
有谁知道如何解决这个问题?