1

我正在使用 fontello 来显示如下共享图标。我正在尝试添加谷歌分析,这样如果有人点击它就会被记录下来。目前,我得到的只是空值。我的 GA 代码如下。如何修复它以记录是否在 facebook、twitter 或 instagram 图标上完成了点击?

    /* Tracks all a href links */
    $('a').click(function(e){
        ga('send','event','Link (Shares)', 'Click (Shares)',$(this).text().trim());
    }) 
/* html of the share code is below*/
<div class="swf-share-icons">
<a href="https://www.facebook.com/google" class="share-icon" title="Follow us on facebook"><i class="icon-facebook-squared"></i></a>
<a href="https://twitter.com/google" class="share-icon" title="Follow us on Twitter"><i class="icon-twitter"></i></a>
<a href="https://instagram.com/google" class="share-icon" title="Follow us on Twitter"><i class="icon-instagramm"></i></a
</div>
4

0 回答 0