所以有很多相互矛盾的帖子和大部分过时的信息,我究竟如何检测到有人阻止谷歌广告?
例如,我的广告显示如下:
<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 元素中,但运气不好。