2

我目前正在使用自己的脚本来管理我网站上的横幅/广告。我有一个数组,其中包含带有链接和图像的基本 html,然后是 som 脚本,它随机从数组中提取一个项目并显示它。

我想将 Google Adsense 添加为数组中的一项,但无法正常工作。我认为我需要做的只是在数组中包含对 Google 脚本的调用,但我有点迷失了。任何人都可以提供任何帮助或建议吗?

我的数组是这样设置的:

var headerSpons = ['<iframe src=\"url\" width=\"728\" height=\"90\" scrolling=\"no\" border=\"0\" marginwidth=\"0\" style=\"border:none;\" frameborder=\"0\"></iframe>']

我需要包含的 Adsense 代码如下所示:

<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxx";
/* Header Banner */
google_ad_slot = "xxxxxxx";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
4

0 回答 0