document.title在Analytics事件跟踪中没有获取页面标题

时间:2014-05-01 23:03:04

标签: javascript events google-analytics

我正在使用此行触发事件,以便查看用户向下滚动的页面

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'

有谁知道如何解决这个问题?

0 个答案:

没有答案