我正在尝试将 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 代码之一,它就会起作用。我怎样才能使它与这两个代码一起工作?