标签:
我们在做网站的时候经常需要统计网站的访问信息,这里介绍一个用jquery写的一个统计方法
新建一个js文件jun_record.js
代码如下:
1 var start; 2 var end; 3 var times = 0; 4 start = new Date();//用户进入时间 5 $(window).bind(‘beforeunload‘, function (e) { 6 end = new Date(); //用户退出时间 7 times = end.getTime() - start.getTime(); 8 times = Math.ceil(times / 1000); //取的是秒并且化整 9 $.ajax({ 10 type: ‘POST‘, 11 async: false, //同步提交 12 url: ‘/Ashx/PageRecord.ashx?action=unload‘, 13 data: { times: times, 14 referrer: document.referrer, 15 title: document.title, 16 url: window.location.href 17 } 18 }); 19 });
ajax提交后台信息为:停留的时间、上一个页面地址、当前页面的标题、当前页面地址;后台可以记录用户的ip、根据ip获取地址、访问离开的时间;每一条数据即为一个pv,然后分组查询ip即可查询出每天ip数。
我们只需要将这个js文件加到相应的页面(需要引用jquery.js文件)
标签:
原文地址:http://www.cnblogs.com/net-xiejun/p/4601635.html