jQuery:我在 Internet Explorer 中使用 jQuery 加载 Adsense 时遇到问题

发布于 2024-11-19 16:20:31 字数 700 浏览 3 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(1

猫卆 2024-11-26 16:20:31

尝试使用

而不是 display:none;

如果您不喜欢这样,因为它会占用页面空间,您可以添加 width:1px;height:1px;overflow:hidden;

Try using <div style="visibility:hidden;"> instead of display:none;

If you don't like that because it takes up space on the page, you can add width:1px;height:1px;overflow:hidden;

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