找到网站访客QQ号码的原理
原理很简单,当用户登录QQ的时候打开你的网站,网站会自动弹出你的QQ空间页面,之后在三秒钟左右自动关闭,这个时候,你打开你的QQ空间,查看你QQ空间的最近访客,这里的最近访客就是你网站的访客。
这里给大家提醒一下,最好是申请一个新QQ,完全没有好友的QQ,另外如果网站访问量大于300,最好是开通黄钻,未开通黄钻的QQ空间只能查看到300以内的访客,300以外就需要开通黄钻了。
第一步:首先下载本站的A.htm和b.html文件,保存到你的本地。然后将这两个文件上传到你网站的根目录,测试打开a.html文件,你会发现有一个弹窗出来......
a.html
<html> <head> <meta http-equiv="Content-Language" content="zh-cn"> <meta http-equiv="Content-Type" content="text ml; charset=gb2312"> <title>弹出窗口后自动关闭</title> <script language="JavaScript"> <!-- var gt = unescape('%3e'); var popup = null; var over = "Launch Pop-up Navigator"; popup = window.open('', 'popupnav', 'width=225,height=235'); if (popup != null) { if (popup.opener == null) { popup.opener = self; } popup.location.href = 'b.htm'; } </script> </head> <BODY onload=showWindow()> <a href="http://www.test.com/">测试</a><hr> </body> <html>
b.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>弹出窗口后自动关闭</title> <script language="JavaScript"> <!-- var gt = unescape('%3e'); var popup = null; var over = "Launch Pop-up Navigator"; popup = window.open('', 'popupnav', 'width=225,height=235'); if (popup != null) { if (popup.opener == null) { popup.opener = self; } popup.location.href = 'http://user.qzone.qq.com/QQ号码'; } </script> </head> <body> </body> <html>
第二步:进入QQ空间,将你的QQ空间设置为所有人访问,点击右上角的设置—权限设置—设置谁能访问我的空间,设置为所有人都可以访问你的QQ空间即可,不然弹出窗口也无法统计出来。同时记得开通QQ黄钻哦。不然统计不到超过300个以上的访客。
转载于:纤云聚合