Should Google Analytics go in the head or bottom o

2019-03-10 23:40发布

Google advises putting the google analytics script right before closing the </head>.

However, I would prefer to combine it with the rest my javascript that are now all together in a cached, external file, which is loaded at the bottom of my HTML file. Can I do it my way? If so, what am I risking then/what's the cost of putting the below code not in the head but at the bottom of the HTML?

<script type="text/javascript">
 var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-22180365-1']);
  _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_setAllowLinker', true]);
  _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>

7条回答
Evening l夕情丶
2楼-- · 2019-03-11 00:06

You're risking nothing really. Putting <script> tags at the end of the <body> is recommendable because of the blocking nature while executing the Javascript it encloses. Since the Javascript for GA is dynamically inserted and therefore non-blocking, you can put it anywhere.

I guess the only "problem" Google sees is, when putting that code at the bottom of your site, you might not catch visitors / pageloads cancel the request before completed. If someone calls your HTML document and cancels the request, the GA code might not get encountered (and therefore, not executed).

查看更多
霸刀☆藐视天下
3楼-- · 2019-03-11 00:12

you can put it before </body> I don't think there would be any problems with that.

查看更多
Bombasti
4楼-- · 2019-03-11 00:13

You're risking nothing really. Putting <script> tags at the end of the is recommendable because of the blocking nature while executing the Javascript it encloses...

That is simply not true, jAndy.

You won't be able to get some features, such as real-time reporting, or Google Webmaster Tools verification, unless the code sits within the <head>. The whole point of the asynchronous code is that it does it can load while the rest of the page is loading. There is no UX risk from placing it within the <head>, and it is best-practice to do so. source: Google Analytics Support

@Stratboy I doubt it's the GA code that's breaking the layout. A properly tagged script - especially one that does not display any content, like GA's - would not affect the layout. I'd look elsewhere for your layout issues. Perhaps try validating it with W3C for some clues?

查看更多
姐就是有狂的资本
5楼-- · 2019-03-11 00:14

I agree with the accepted answer. I would like to add that I noticed Google Webmaster Tools (GWT) requires the tracking code (asynchroneous version) to be in the head to be able to register as admin for your site via an existing Google Analytics registration for the same site. So if the JS tracking code is not in the <head>, this registration option is not available.

This might be Google's way of coercing more websites to do this. Perhaps Google can keep better track of precisely those visitors who cancel during page load. These might make interesting Analytics for them to optimize their search results (e.g. maintain 'early-bounce' events for their statistics).

查看更多
太酷不给撩
6楼-- · 2019-03-11 00:16

I had the script in body section just before ending body tag and it was always showing that my site is missing tracking code analytics admin panel so I moved to head section and it works fine.

查看更多
对你真心纯属浪费
7楼-- · 2019-03-11 00:22

From Google Analytics setup instructions:

Paste your snippet (unaltered, in it’s entirety) into every web page that you want to track. Paste it immediately before the closing </head> tag.

If your website uses templates to generate pages, enter it just before the closing tag in the file that contains the <head> section.

查看更多
登录 后发表回答