jQuery:我在 Internet Explorer 中使用 jQuery 加载 Adsense 时遇到问题
<div id="ad-1"></div>
...
<div style="display:none;">
<div id="adsref-1">
<script type="text/javascript">
google_ad_client="pub-...";
google_ad_slot="...";
google_ad_width=468;
google_ad_height=60;
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
</div>
<script>
$(document).ready(function(){
jQuery('#adsref-1').appendTo(jQuery('#ad-1'));
});
</script>
这基本上是在其他所有内容加载完成后加载 Adsense,但广告不会显示在 Internet Explorer 中。它适用于所有其他主要浏览器。
<div id="ad-1"></div>
...
<div style="display:none;">
<div id="adsref-1">
<script type="text/javascript">
google_ad_client="pub-...";
google_ad_slot="...";
google_ad_width=468;
google_ad_height=60;
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
</div>
<script>
$(document).ready(function(){
jQuery('#adsref-1').appendTo(jQuery('#ad-1'));
});
</script>
This basically loads Adsense after everything else has loaded, but the ads do not show up in Internet Explorer. It works in all other major browsers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
而不是
display:none;
如果您不喜欢这样,因为它会占用页面空间,您可以添加
width:1px;height:1px;overflow:hidden;
Try using
<div style="visibility:hidden;">
instead ofdisplay:none;
If you don't like that because it takes up space on the page, you can add
width:1px;height:1px;overflow:hidden;