跟踪由 AJAX 和非 HTML 内容调用的页面

要跟踪所谓的虚拟网页浏览量,请在异步请求后立即使用 ga('send') 方法:

语法: ga('send', 'pageview', 'path to your virtual page');

示例(简单链接):

<a href="http://example.com/my.pdf"
   onClick="ga('send', 'pageview', '/virtual/my.pdf');">Download PDF</a> 

示例(JQuery AJAX):

$.ajax({
    url: '/ajax-url/file.json',
    data: {page: 4},
    success: function(data) {
        ga('send', 'pageview', '/ajax-url/file.json');
        console.log("Got response",data); 
    },
    dataType: 'json',
    method: 'GET'
});

资料来源: