我想知道是否将所有JavaScript跟踪代码都放在一个<script>
中还是必须将其放在不同的<script>
标签中会有所不同?
例如:
选项1:
<script>
/* Google Analytics tracking code*/
/* Intercom chat tracking code */
/* Facebook Pixel tracking code */
</script>
OR
选项2:
<script>
/* Google Analytics tracking code*/
</script>
<script>
/* Intercom chat tracking code */
</script>
<script>
/* Facebook Pixel tracking code */
</script>
这有关系吗?谢谢
答案 0 :(得分:1)
不,没关系。所有script
标签(内联或与src
一起)都有效地连接在一起,从而成为一个长脚本。
答案 1 :(得分:0)
取决于您的操作方式,如果脚本位于文件中,则最好将所有内容放在单个文件中,因为您只需要加载一次,而不必分别加载。例: 更好:
<script src='/GoogleIntercomFacebook.js'></script>
要这样:
<script src="Google.js"></script>
<script src="Intercom.js"></script>
<script src="Facebook.js"></script>