如何跟踪推文按钮点击?

发布于 2024-09-30 09:41:00 字数 87 浏览 6 评论 0原文

我想通过 Google Analytics 跟踪推文按钮点击,但推文按钮是一个包含来自另一个域的内容的 iframe。是否有一些技巧可以为推文按钮点击添加回调?

I want to track tweet button clicks via Google Analytics, but tweet button is an iframe with content from another domain. Is there some tricks to add callbacks for tweet button click?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

护你周全 2024-10-07 09:41:00

或者..你可以简单地向你的div添加事件,然后等待这个div被点击,就像:

<div class="clickMe">
   //twitter button there
</div>
<script>
$('clickMe').click(function(){
    //my awesome  code there
})
</script>

当然,如果你只需要点击,而不是回调。

Or.. u can simply add event to your div and wait when this div well be clicked, like a:

<div class="clickMe">
   //twitter button there
</div>
<script>
$('clickMe').click(function(){
    //my awesome  code there
})
</script>

Sure, if you need only click, not callback.

时光瘦了 2024-10-07 09:41:00
<a style="float:left;position: relative;display: inline-block" target="_blank" href="//twitter.com/intent/tweet?url=http%3A%2F%2Ftechiessolution.com%2Fcss&count=none&source=tweetbutton&text=testing%20Testing%20123%20Title&original_referer=techiessolution.com">Tweet</a>

if (typeof twttr === "undefined") {
  $.getScript("//platform.twitter.com/widgets.js", function () {
    function handleTweetEvent(event) {
      if (event) {
        console.log(event['target']);
      }
    }
    twttr.events.bind("tweet", handleTweetEvent);
  });
}
<a style="float:left;position: relative;display: inline-block" target="_blank" href="//twitter.com/intent/tweet?url=http%3A%2F%2Ftechiessolution.com%2Fcss&count=none&source=tweetbutton&text=testing%20Testing%20123%20Title&original_referer=techiessolution.com">Tweet</a>

if (typeof twttr === "undefined") {
  $.getScript("//platform.twitter.com/widgets.js", function () {
    function handleTweetEvent(event) {
      if (event) {
        console.log(event['target']);
      }
    }
    twttr.events.bind("tweet", handleTweetEvent);
  });
}
还如梦归 2024-10-07 09:41:00

怎么样:

twttr.events.bind('click', function(e){
    // Send GA event
    console.log(e);
});

What about:

twttr.events.bind('click', function(e){
    // Send GA event
    console.log(e);
});
衣神在巴黎 2024-10-07 09:41:00

一种想法是为 Twitter 按钮 href 生成 UTM 链接,然后添加回 iFrame 源页面作为 href 源。这将提供对 Google Analytics(分析)跟踪的点击/会话/用户数据的可见性

为此,请首先复制原始超链接并用作 使用 Google 链接生成器构建链接。生成后,返回 iframe 源页面并将新的 UTM 链接添加为 href 源。

One thought is to generate a UTM'd link for the Twitter button href, then add back into iFrame source page as the href source. This will provide visibility into the click/session/user data on your Google Analytics tracking

To do this, first copy the original hyperlink and use as the source for building the link using the Google link builder. Once generated, come back into the iframe source page and add the new UTM'd link as the href source.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文