什么是JS广告

JavaScript023

什么是JS广告,第1张

JS = JavaScript,一种计算机脚本语言,主要在web浏览器(客户端)解释执行JS广告管理系统是大部分门户网站不可或缺的一个小功能,程序主要是实用使用很简单,在界面上没有过多修饰,但须自行整合修饰 主要功能是方便站长对网站广告的管理,特别是HTML静态页面时,广告更新很方便

在网页中插入 Google AdSense 广告,一般将源代码直接嵌入主题模板页面。事实上 Google AdSense 支持并允许使用 JS 文件调用。当然前提是不要因任何原因修改代码,或手动影响广告的定位。这会因违反计划政策而被 Google 咔嚓账号。

芒果以 468x60 的经典广告尺寸代码为例,说明 JS 文件调用的方法。

获得广告单元代码如下:

<script type="text/javascript"><!--

google_ad_client = "发布商 ID"

/* 468x60, 创建于 xx-xx-xx */

google_ad_slot = "xxxxxxxxxx"

google_ad_width = 468

google_ad_height = 60

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>

得到这段代码后,需要将其转化为 JS 形式:

document.writeln("<script type=\"text\/javascript\"><!--")

document.writeln("google_ad_client = \"发布商 ID\"")

document.writeln("\/* 468x60, 创建于 xx-xx-xx *\/")

document.writeln("google_ad_slot = \"xxxxxxxxxx\"")

document.writeln("google_ad_width = 468")

document.writeln("google_ad_height = 60")

document.writeln("\/\/-->")

document.writeln("<\/script>")

document.writeln("<script type=\"text\/javascript\"")

document.writeln("src=\"http:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js\">")

document.writeln("<\/script>")

鉴于手工更改比较麻烦,推荐使用在线 HTML 转 JS 工具,例如:http://www.book560.com/Other/jstohtm.htm

将转换后的代码保存为 JS 文件,调用方法如下:

<script language="JavaScript" src="ggad_468x60.js" type="text/javascript"></script>

作者:水木