3

嘿,我正在尝试进一步了解 javascript,并想知道是否有人可以向我解释以下脚本中到底发生了什么:

<– Begin Google Adsense code –&gt;
<script type=”text/javascript”&gt;
google_ad_client = “ad-client-code-goes-here”;
google_ad_slot = “ad-slot-code-goes-here”;
google_ad_width = 300;
google_ad_height = 250;
</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”&gt;
</script>
<– End Google Adsense code –&gt;

最重要的是,为什么开头有4个'google_ ad_ ...',它们的目的是什么?

逐行解释会很棒:)

谢谢你的帮助。对此,我真的非常感激。

4

1 回答 1

3

google_ad... 是变量(将此代码与您的帐户相关联,设置广告的宽度/高度等)。它们是为稍后将被加载的脚本 (show_ads.js) 设置的。

有关变量的完整概要,请参阅Adsense 中使用的 Cyber​​NAC Javascript 变量

于 2009-08-19T11:47:24.133 回答