2016-07-28 14 views
1

私のすべてのHTMLページにGoogle Anlyticsを追加しようとしています。下のページはrates.htmlと呼ばれています。私のfooter.htmlでjquery - フッターでGoogleアナリティクスが引き込まれない

<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> 

私は、次のしている:

<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:[email protected]%20" class="Copy_link1">[email protected] </a>| <a href="mailto:[email protected]" class="Copy_link1">[email protected]</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> 

私はcontent.Problemは、私はちょうどrates.htmlや他のHTMLページが本当にないことに気づいたということである段落を見ることができますアナリティクスを引き出すのは、ページソースを表示するときに分析が表示されないためです。

グーグル・アナリティクスは、独自のjsファイルに分析を入れて、私のページ

答えて

0

に表示されないために、私が行うことができますどのように。 jsを持つ.load()でファイルをレンダリングすることはできません。htmlだけがレンダリングされ、ファイル内のjはレンダリングされません。あなたのrates.htmlこの

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

ようになり

その後、Analyticsのコードは、私はそれを行うことができないのanalytics.js

+0

というファイルに入れました。私が言及したように、レートファイルはpf HTML拡張です。 phpファイルでは、includeを使って大丈夫です。しかし、htmlファイルでは動作しないので、jqueryコードを試しています。 –

+0

更新された回答が@WosleyAlarico –

+0

...ありがとうございました。私は最初の試みとしてそれを試したが、どちらもうまくいきませんでした。私はそれが動作するはずですが何らかの理由でそれがしないことを知っている –

関連する問題