我有一个 javascript 片段,我需要在每个页面上注入它来启动我的谷歌分析。我尝试使用注入并不断收到错误:
inject("// load ga.js if it doesn't exist
if (!window._gat) {
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);
};")
用氚解决这个问题的最佳方法是什么?