传出的谷歌分析链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了传出的谷歌分析链接相关的知识,希望对你有一定的参考价值。
Detects all external/outgoing links, adds class, & adds target = _blank. When using a strict doctype, this method is valid when using target manipulation.
$('#wrapper a:not(.popupwindow)').filter(function() { var theHref = this; if (theHref.hostname && theHref.hostname !== location.hostname) { $(theHref).not(".noAutoIcon").addClass("external"); $(theHref).not(".noAutoLink").attr('target','_blank').bind('click keypress', function(event) { var code=event.charCode || event.keyCode; if (!code || (code && code == 13)) { if(pageTracker){ var fixedLink = this.href; fixedLink = fixedLink.replace(/https?://(.*)/,"$1"); fixedLink = '/outgoing/' + fixedLink; pageTracker._trackPageview(fixedLink); }; }; }); }; });
以上是关于传出的谷歌分析链接的主要内容,如果未能解决你的问题,请参考以下文章
getSupportFragmentManager().findFragmentById 为 android 片段中的谷歌地图返回 null?
如何在Android的谷歌地图片段中更改默认的蓝色圆形位置图标?