传出的谷歌分析链接

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.
  1. $('#wrapper a:not(.popupwindow)').filter(function() {
  2. var theHref = this;
  3. if (theHref.hostname && theHref.hostname !== location.hostname) {
  4. $(theHref).not(".noAutoIcon").addClass("external");
  5. $(theHref).not(".noAutoLink").attr('target','_blank').bind('click keypress', function(event) {
  6. var code=event.charCode || event.keyCode;
  7. if (!code || (code && code == 13)) {
  8. if(pageTracker){
  9. var fixedLink = this.href;
  10. fixedLink = fixedLink.replace(/https?://(.*)/,"$1");
  11. fixedLink = '/outgoing/' + fixedLink;
  12. pageTracker._trackPageview(fixedLink);
  13. };
  14. };
  15. });
  16. };
  17. });

以上是关于传出的谷歌分析链接的主要内容,如果未能解决你的问题,请参考以下文章

导航抽屉中的谷歌地图 - 空指针异常,哪个是正确的片段?

getSupportFragmentManager().findFragmentById 为 android 片段中的谷歌地图返回 null?

如何在Android的谷歌地图片段中更改默认的蓝色圆形位置图标?

另一个片段内的谷歌地图 - 像 onLocationChanged 这样的功能不起作用

本地主机上的谷歌分析:为啥我的测试代码不起作用?

谷歌地图片段显示空地图