如何检测广告拦截并显示消息?

时间:2013-05-16 13:07:06

标签: javascript adsense adblock

所以有很多相互矛盾的帖子和大部分过时的信息,我究竟会如何检测阻止Google广告的人?

我的广告就像这样显示:

        <div class="row gol-news-ad hidden-tablet hidden-phone">
            <div class="span9">
                <div class="alert alert-info text-center">
                <script type="text/javascript"><!--
                google_ad_client = "ca-pub-7221863530030989";
                /* gol top above news big */
                google_ad_slot = "5565571944";
                google_ad_width = 728;
                google_ad_height = 90;
                //-->
                </script>
                <script type="text/javascript"
                src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                </script>
                </div>
            </div>
        </div>

是否有办法显示“请支持我们,不要阻止我们的广告!”这样的消息。如果他们阻止了他们?

我尝试添加:

$(window).load(function() {
    if(typeof(window.google_render_ad)=="undefined") 
    { 
        var thep = document.getElementById('mainad');
        var content = document.createTextNode("Please disable adblocker!");
        thep.appendChild(content);
    }
}

将广告代码包装在“mainad”p元素中,但没有运气。

0 个答案:

没有答案