gpt4 book ai didi

javascript - 无法将多个 adsense 代码添加到一个页面

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:26:20 27 4
gpt4 key购买 nike

我正在尝试向一个页面添加 2 个 adsense 代码。当我这样做时,只显示一个(第一个定义的)并且页面似乎在无休止地加载。

这是带有示例槽和客户端 ID 的代码。

<body>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxx";
google_ad_slot = 111111111;
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxx"; //the same like the first one client
google_ad_slot = 222222222;
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</body>

如果我删除其中一个 adSense 代码,它就会起作用。我怎样才能使它适用于这两种代码?

最佳答案

经过将近 2 小时的谷歌搜索,我终于弄明白了。我唯一需要做的就是将引号添加到 google_ad_slot 变量(天啊……)。所以工作代码看起来像这样:

<body>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxx";
google_ad_slot = "111111111"; // see the quotes
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxx"; //the same like the first one client
google_ad_slot = "222222222";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

如果只有一个 adSense 代码,则作为整数的广告位可以正常工作。如果添加另一个,则必须将所有插槽定义为字符串

干杯!

关于javascript - 无法将多个 adsense 代码添加到一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13398584/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com