用js调用阿里联盟广告的js代码:例如:
js文件代码:
document.write("<script>")
document.write("var YahooCNADConfig=new Array();")
document.write("YahooCNADConfig['adid']=xxx;")
document.write("YahooCNADConfig['wid']=xxxx;")
document.write("YahooCNADConfig['w']=xxx;")
document.write("YahooCNADConfig['h']=xxx;")
document.write("</script>")
document.write("<script type='text/javascript' src='http://view.aliunion.cn.yahoo.com/showad.php'></script>")
用js调用google广告的js代码:例如:
一
document.writeln("<script type='text/javascript'><!--");
document.writeln("google_ad_client = '这里是你的帐号';");
document.writeln("google_ad_width = 120;");
document.writeln("google_ad_height = 240;");
document.writeln("google_ad_format = '120x240_as';");
document.writeln("google_ad_type = 'text_image';");
document.writeln("google_ad_channel ='';");
document.writeln("google_color_border = 'ffffff';");
document.writeln("google_color_bg = 'FFFFFF';");
document.writeln("google_color_link = '0000cc';");
document.writeln("google_color_url = '008000';");
document.writeln("google_color_text = '000000';");
document.writeln("//--></script>");
document.writeln("<script type='text/javascript'");
document.writeln(" src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>");
document.writeln("</script>");
二
document.write("<script type=\"text/javascript\"><!--");
document.write("google_ad_client = \"pub-48243836529xxxxx\";");
document.write("google_alternate_ad_url = \"http://www.xxxxx.com/index.htm\";");
document.write("google_ad_width = 468;");
document.write("google_ad_height = 60;");
document.write("google_ad_format = \"468x60_as\";");
document.write("google_ad_type = \"text\";");
document.write("google_ad_channel =\"28531xxxxx\";");
document.write("google_color_border = \"CCCCCC\";");
document.write("google_color_bg = \"FFFFFF\";");
document.write("google_color_link = \"000000\";");
document.write("google_color_url = \"666666\";");
document.write("google_color_text = \"333333\";");
document.write("//--></script>");
document.write("<script type=\"text/javascript\"");
document.write(" src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">");
document.write("</script>");
以上只是例子,实际使用时请将相关参数(比如用户id,广告id)改一下。