gpt4 book ai didi

jquery - Google Analytics 与 MVC3 的最佳放置位置在哪里

转载 作者:行者123 更新时间:2023-12-01 06:12:43 25 4
gpt4 key购买 nike

我刚刚开始使用 Google Analytics(分析)。阅读说明后发现,放置它们的最佳位置是在结束头标签末尾之前:

    <script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'xxx']);
_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>

我想我之前读过建议,说我应该将它们放在文档的末尾。另外,我正在使用 jQuery 和 javascript,所以最好放置代码,以便它仅在文档准备好后才触发?

任何帮助和建议将不胜感激。

谢谢

最佳答案

关注 Google 的 instructions :

One of the main advantages of the asynchronous snippet is that you can position it at the top of the HTML document. This increases the likelihood that the tracking beacon will be sent before the user leaves the page. It is customary to place JavaScript code in the <head> section, and we recommend placing the snippet at the bottom of the <head> section for best performance.

Google 的新跟踪代码标记了注入(inject)的 <script>具有属性 async=true 的标签。这意味着在任何现代浏览器中,GA 脚本在执行时不会阻止其他脚本的执行。您不会注意到任何速度减慢。

关于jquery - Google Analytics 与 MVC3 的最佳放置位置在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6402193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com