继文档这里找到: https://developers.google.com/analytics/devguides/collection/gajs/
我曾在一个空的HTML文件作为这样一个最简单的例子:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXX-2']);
_gaq.push(['_trackPageview']);
(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);
})();
</script>
当我打开Chrome的页面与谷歌标记助理插件,它说“没有HTTP响应检测”和我所有我在开发工具网络选项卡中看到的是从谷歌下载HTML文件加载和使用ga.js脚本。 我得到同样的结果在IE浏览器,但是当我使用Firefox我可以看到它试图从谷歌获得__utm.gif这是我的理解,它应该工作。
我看在控制台中没有错误,为什么不这项工作在IE和Chrome?
下面是完整的HTML:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>GA Test</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-X-2']);
_gaq.push(['_trackPageview']);
(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);
})();
</script>
</head>
<body>
<p>Testing GA</p>
</body>
</html>