adzon 发表于 2018-7-31 17:06:49

追踪Google Adsense点击的代码


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title> Afilter Tracker Google 广告点击追踪演示</title>
    <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
    <script type="text/javascript">

      var isOverGoogleAd = false;
      var ad = /adsbygoogle/;

      $(document).ready(function()
      {
            $('ins').on('mouseover', function () {
                if(ad.test($(this).attr('class'))){
                  isOverGoogleAd = true;
                }
            });
            $('ins').on('mouseout', function () {
                if(ad.test($(this).attr('class'))){
                  isOverGoogleAd = false;
                }
            });
      });

      $(window).blur(function(e){
            if(isOverGoogleAd){
//检测到点击。
            }
      });
    </script>
</head>
<body>

<script async src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'></script>
<!-- qym -->
<ins class='adsbygoogle'
   style='display:inline-block;width:970px;height:90px'
   data-ad-client='ca-pub-111111111111111'
   data-ad-slot='1111111111'></ins>
<script>
    (adsbygoogle = window.adsbygoogle || []).push({});
</script>

</body>
</html>

Google Adsense 广告点击追踪的代码,亲测有效。

配合点击追踪 对于那些买流量做adsense的 很有帮助。

cookie 发表于 2018-7-31 22:05:34

第一个支持。。。

wechat 发表于 2018-8-1 11:16:22

这种思路很巧妙,赞一个。

有没有测试 这种是否可行


$('ins').on('click', function () {
                if(ad.test($(this).attr('class'))){
                   //检测到点击
                }
            });

adzon 发表于 2018-8-2 12:28:18

wechat 发表于 2018-8-1 11:16
这种思路很巧妙,赞一个。

有没有测试 这种是否可行


这个没有测试过~ 大佬可以改下代码测试看看
页: [1]
查看完整版本: 追踪Google Adsense点击的代码