2012-06-29 84 views
1

我嘗試使用多頁面模板開發jQuery Mobile應用程序。我想將Google Analytics添加到應用程序中。如何將Google Analytics與jQuery Mobile應用程序集成?

我參考這個文件,Using Google Analytics with jQuery Mobile。這似乎不適用於我的應用程序。

在我的應用程序的代碼如下:

<script type="text/javascript"> 
    var _gaq = _gaq || []; 

    (function() { 
     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; 
     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
     var s = document.getElementsByTagName('script')[0]; 
     s.parentNode.insertBefore(ga, s); 
    })(); 

    $('[data-role=page]').on('pageshow', function (event, ui) { 
     try { 
      _gaq.push(['_setAccount', 'UA-30119852-1']); 
      hash = location.hash; 

      if (hash) { 
       _gaq.push(['_trackPageview', hash.substr(1)]); 
      } else { 
       _gaq.push(['_trackPageview']); 
      } 
     } catch(err) {  
     } 
    }); 
</script> 

如何集成谷歌分析與jQuery Mobile應用程序?

回答

0
$(document).delegate('[data-role=page]', 'pageshow', function (event, ui) { 
console.log('pageshow event handler called for '); 
var url = location.href; 
console.log('pageshow event url = '+url); 

try 
{ 
    //_gaq.push(['_trackPageview', url]); 
    _gaq.push(['_trackPageview', event.target.id]); 
    console.log('done pushing page '+url); 
} 
catch(error) { 
    // error catch 
    console.log('got error '+error); 
} 
}); 
+0

謝謝。我今晚會嘗試。 –

+0

我知道這是舊的,但也許有人可能知道這個:event.target.id和hash.substr(1)之間的區別是什麼,實際上並不一樣? – rgdesign

相關問題