我正在尝试根据 cookie 过滤我公司网站的 Google Analytics 数据。我不想跟踪内部流量,但我不能只根据 IP 地址范围进行过滤,因为我们仍想跟踪一些内部用户。我有一些用于添加 cookie 的非常简单的代码,但我只是不确定在哪里添加代码。我对 cookie 真的很陌生,在网上找不到任何关于如何实际添加或使用 cookie 的明确内容。
<html>
<head>
<title>Remove My Internal Traffic from Google Analytics</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-YY']);
_gaq.push(['_setVar','employee']);
_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);
})();
所以我的问题是,这段代码实际上去哪里了?谢谢你用饼干帮助我的新手技能。