jquery - google analytics没有拉入页脚

时间:2016-07-28 12:26:46

标签: jquery html google-analytics

我正在尝试将Google Anlytics添加到我的所有html网页。以下网页名为rates.html。

 <html>
  <head>
  <title></title>
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script> 
    $(function(){
    $("#footer").load("footer.html"); 
    });
  </script> 
 </head>
 <body>                                 
   <div id="footer"></div>
 </body>
</html>

在我的footer.html上,我有以下内容:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../css/stylesheet.css" />
<title>Footer</title>
</head>
<body>  
  <p align="center">Numbers: +244 (0) 00000000 | Lodge: +244 (0) 00000000 <br />
  <a href="mailto:lodge@sidney.co.za%20" class="Copy_link1">lodge@sidney.co.za  </a>| <a href="mailto:reservations@sidney.co.za" class="Copy_link1">reservations@samara.co.za</a></p>
  <p align="center">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus temporibus sequi saepe eius dolorem iusto deleniti, numquam nemo provident sunt accusantium esse cum similique harum reprehenderit illum, facilis laudantium soluta!.</p>
  <p align="center"><a href="http://www.sidney.com/" class="Copy_link1">SEO Powered by Ruby Digital</a></p>
  <script>
  (function(i,s,o,g,r,a,m)    {   i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new    Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)  [0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-12813356-1', 'auto', {'allowLinker': true});
  ga('require', 'linker');
  ga('send', 'pageview');
 </script>
</body>
</html>

我可以看到段落内容。问题是我刚刚意识到rates.html和其他HTML页面并没有真正提取分析,因为当我查看页面源时,没有显示任何分析。

我如何才能在我的网页中显示谷歌分析

1 个答案:

答案 0 :(得分:0)

将分析放在自己的js文件中。你不能在包含js的.load()文件中渲染,只渲染html,而不是文件中的js。

你的rates.html看起来像这样

<html>
    <head>
        <title></title>
        <script src="analytics.js"></script>
    </head>
    <body>                                 
        body content here
    </body>
</html>

然后将您的分析代码放在名为analytics.js的文件中