javascript jQuery 1.7+中锚点的GA事件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript jQuery 1.7+中锚点的GA事件相关的知识,希望对你有一定的参考价值。

var $body = jQuery('body');
$body.on('click', 'a', function() {
  var $this = $(this),
    thisHref = $this.attr('href');

  if (thisHref.length
    && thisHref.substring(0, 1) === '#'
    && typeof ga === 'function'
  ) {
    ga('send', 'event', {
      eventCategory: 'Anchor',
      eventAction: 'click',
      eventLabel: $this.text().trim().substr(0, 140).trim(),
      transport: 'beacon'
    });
  }
});

以上是关于javascript jQuery 1.7+中锚点的GA事件的主要内容,如果未能解决你的问题,请参考以下文章

jq实现页面中锚点滚动跳转

Vue爬坑之旅:vue单页面中锚点跳转

css中锚点剖析 & 血泪教训

Unity中锚点的动态设置

cocos2d-x中锚点设置及定位方式

在 jquery/javascript 处理后移动到命名锚点