如何创建类似谷歌分析的自己的JavaScript API
作者:互联网
我只是想知道谷歌分析是如何工作的以及这段代码意味着什么?
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'some value']);
_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);
})();
先感谢您..
解决方法:
这是一个相当广泛的问题,但你可以在这里找到一些有用的信息https://developers.google.com/analytics/resources/concepts/gaConceptsTrackingOverview
它显示what the code actually does和describing all of the parameters.
标签:javascript,api,google-analytics-api 来源: https://codeday.me/bug/20190830/1766444.html