当前位置: 首页 > 图文教程 > 网络编程 > Javascript > JS统计Flash被网友点击过的代码

Javascript
form中限制文本字节数js代码
use jscript with List Proxy Server Information
use jscript List Installed Software
List Installed Software Features
List Information About the Binary Files Used by an Application
List the Codec Files on a Computer
List the UTC Time on a Computer
List Installed Hot Fixes
excel操作之Add Data to a Spreadsheet Cell
Add Formatted Data to a Spreadsheet
Apply an AutoFormat to an Excel Spreadsheet
JavaScript语法着色引擎(demo及打包文件下载)
类之Prototype.js学习
一款JavaScript压缩工具:X2JSCompactor
iis6+javascript Add an Extension File
jscript之Open an Excel Spreadsheet
jscript之Read an Excel Spreadsheet
jscript之List Excel Color Values
去除图像或链接黑眼圈的两种方法总结
Add a Formatted Table to a Word Document

Javascript 中的 JS统计Flash被网友点击过的代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-12   浏览: 89 ::
收藏到网摘: n/a

JS怎样知道Flash广告条被网友点击过?
1、Flash广告条不是我做的,它的链接是写在里面的。
2、我想统计这个Flash被网友点击了多少次。
它由三个JS组成,它是一个广告联盟网站,统计FLASH被点击的应用,可是我不会修改成我的应用,请大家帮看看,谢谢,我的点击统计是 count.asp 请问怎样写一个JS可以进行统计,谢谢
1.js
--------------------------------
var ed_ads_Furl=top.window.location;
var ed_ads_debug;
ed_ads_Url="http://g.ad68.com/";
ed_ads_Id=358;
ed_ads_uId=829;
ed_ads_webtest=0;
ed_ads_rePlace=0;
ed_ads_width=555;
ed_ads_height=80;
ed_ads_class=1;
ed_ads_pic_url="http://253.ad68.com/union/1d/555_80.swf";
ed_ads_open_time="0";
ed_ads_open_class="1";
ed_ads_logo="0";
ed_ads_tempstop="0";
ed_ads_group="";
ed_ads_debug=0;
document.write('<script language="javascript" type="text/javascript" src="2.js"></script>');
document.write('<script language="javascript" type="text/javascript" src="3.js"></script>');
-----------------------------------------
2.js
-----------------------------------------
document.write('<div id=ads_class_show'+ed_ads_Url+' style="position: static; width:'+ed_ads_width+'px; top:0; left:0; visibility: visible; z-index: 1; height: '+ed_ads_height+'px;"><iframe src="'+location_url+'" MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=no WIDTH='+ed_ads_width+' HEIGHT='+ed_ads_height+'></iframe></div>');
------------------------------
3.js
-----------------
var caution = false

function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "")
if (!caution || (name + "=" + escape(value)).length <= 4000)
document.cookie = curCookie
else
if (confirm("Cookie exceeds 4KB and will be cut!"))
document.cookie = curCookie
}

function getCookie(name) {
var prefix = name + "="
var cookieStartIndex = document.cookie.indexOf(prefix)
if (cookieStartIndex == -1)
return null
var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
if (cookieEndIndex == -1)
cookieEndIndex = document.cookie.length
return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
}

function deleteCookie(name, path, domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
"; expires=Thu, 01-Jan-70 00:00:01 GMT"
}
}

function fixDate(date) {
var base = new Date(0)
var skew = base.getTime()
if (skew > 0)
date.setTime(date.getTime() - skew)
}

var now = new Date()
fixDate(now)

if(ed_ads_class==9)
now.setTime(now.getTime() + 24 * 60 * 60 * 1000)
else if(ed_ads_class==2)
now.setTime(now.getTime() + 0.03 * 60 * 60 * 1000)
else
now.setTime(now.getTime() + 1.5 * 60 * 60 * 1000)
var ed__state__visits = getCookie("ed__state__ip_check_"+ed_ads_Id)

if (!ed__state__visits)
ed__state__visits = 1
else
ed__state__visits = parseInt(ed__state__visits) + 1
setCookie("ed__state__ip_check_"+ed_ads_Id, ed__state__visits, now)
setCookie("ed__state__test", now, now)
var ed__state__test = getCookie("ed__state__test")
if (ed__state__test!=now) ed__state__visits=0
location_url=''+ed_ads_Url+'pds_k/view.php?id='+ed_ads_Id+'&uid='+ed_ads_uId+'&rePlace='+ed_ads_rePlace+'&visits='+ed__state__visits+'&a_width='+ed_ads_width+'&a_height='+ed_ads_height+'&a_class='+ed_ads_class+'&a_pic_url='+ed_ads_pic_url+'&ed_str='+escape(ed_ads_Furl)+'&ed_ads_open_class='+ed_ads_open_class+'&ed_ads_logo='+ed_ads_logo+'&ed_ads_tempstop='+ed_ads_tempstop+'&ed_ads_webtest='+ed_ads_webtest+'&ed_ads_group='+ed_ads_group;
点击运行可以看到效果:
[Ctrl+A 全选 提示:你可先修改部分代码,再按运行]