我使用了谷歌Analytics(分析)將以下代碼位,它工作得很好:
以下是非常正常的谷歌Analytics(分析)設置:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '**-*****-**']);
(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);
})();
爲jQuery Mobile的更新是在這裏使每個虛擬頁記錄:
$(document).delegate('[data-role=page]', 'pageshow', function (event, ui) {
var url = location.href;
try {
if (location.hash) {
url = location.hash;
}
_gaq.push(['_trackPageview', url]);
}
catch(error) {
// error catch
}
});
將嘗試這併發送我的反饋。 – pal4life
還沒有嘗試過,但Bango Analytics絕對適用於移動Web應用程序。 – pal4life
defaulturl在哪裏定義? – pauloya