JS怎样知道Flash广告条被网友点击过?
1、Flash广告条不是我做的,它的链接是写在里面的。
2、我想统计这个Flash被网友点击了多少次。
它由三个JS组成,它是一个广告联盟网站,统计FLASH被点击的应用,可是我不会修改成我的应用,请大家帮看看,谢谢,我的点击统计是count.asp请问怎样写一个JS可以进行统计,谢谢
1.js
--------------------------------
vared_ads_Furl=top.window.location;
vared_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('<scriptlanguage="javascript"type="text/javascript"src="2.js"></script>');
document.write('<scriptlanguage="javascript"type="text/javascript"src="3.js"></script>');
-----------------------------------------
2.js
-----------------------------------------
document.write('<divid=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;"><iframesrc="'+location_url+'"MARGINWIDTH=0MARGINHEIGHT=0HSPACE=0VSPACE=0FRAMEBORDER=0SCROLLING=noWIDTH='+ed_ads_width+'HEIGHT='+ed_ads_height+'></iframe></div>');
------------------------------
3.js
-----------------
varcaution=false
functionsetCookie(name,value,expires,path,domain,secure){
varcurCookie=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("Cookieexceeds4KBandwillbecut!"))
document.cookie=curCookie
}
functiongetCookie(name){
varprefix=name+"="
varcookieStartIndex=document.cookie.indexOf(prefix)
if(cookieStartIndex==-1)
returnnull
varcookieEndIndex=document.cookie.indexOf(";",cookieStartIndex+prefix.length)
if(cookieEndIndex==-1)
cookieEndIndex=document.cookie.length
returnunescape(document.cookie.substring(cookieStartIndex+prefix.length,cookieEndIndex))
}
functiondeleteCookie(name,path,domain){
if(getCookie(name)){
document.cookie=name+"="+
((path)?";path="+path:"")+
((domain)?";domain="+domain:"")+
";expires=Thu,01-Jan-7000:00:01GMT"
}
}
functionfixDate(date){
varbase=newDate(0)
varskew=base.getTime()
if(skew>0)
date.setTime(date.getTime()-skew)
}
varnow=newDate()
fixDate(now)
if(ed_ads_class==9)
now.setTime(now.getTime()+24*60*60*1000)
elseif(ed_ads_class==2)
now.setTime(now.getTime()+0.03*60*60*1000)
else
now.setTime(now.getTime()+1.5*60*60*1000)
vared__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)
vared__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 全选 注:如需引入外部Js需刷新才能执行]