如何防止GA跟踪页面标题?将_setDetectTitle
设置为false
仍会将请求中的页面标题发送到GA服务器(utmdt
)。由于隐私问题,我不希望页面标题离开浏览器。有任何想法吗?
最佳答案
_setDetectTitle
对我来说很好。您只需要在_trackPageview
调用之前调用它:
var _gaq=_gaq||[];
_gaq.push(['_setAccount','UA-XXXXXX-1']);
_gaq.push(['_setDetectTitle', false]);
_gaq.push(['_trackPageview'])
您可以对比version with _setDetectTitle set to false和sent in a standard version发送的__utm.gif匹配。
在前者中,没有设置
utmdt
,在后者中,未设置。屏幕截图:左边的发送页面标题;右边的那个没有。