0

我有问题。我想用 Piwik 跟踪我的移动 Web 应用程序的用户,但由于 AJAX,只跟踪第一页上的视图。所以我尝试使用 pageinit 函数在每个页面上加载 Piwik 跟踪脚本。但这也失败了(Piwik 也只跟踪第一页)。我已经在 - 部分的脚本中绑定了。我做错了什么?

<script type="text/javascript">
$(#ac).on('pageinit', function(){
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);

(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://url/piwik/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "1"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
});
</script>
<!-- End Piwik Code -->
4

1 回答 1

0

加载脚本后,您可以使用 Piwik API 在 Jquery Mobile 的页面事件中进行跟踪。例如,要加载一个页面(它将出现在 Piwik 的“操作->页面标题”下):

$(document).on( 'pageinit','#YOUR_PAGE_ID',function( event ) { 
    _paq.push(['trackPageView', 'THE_TITLE_YOU_WANT_FOR_YOUR_PAGE']);       
});
于 2013-12-02T17:30:56.180 回答