js统计与显示网页停留时间

发布时间:2019-08-09编辑:脚本学堂
本文介绍了javascript实现访客在某一个页面的停留时间,网页访问统计功能,在访客关闭网页时弹出提示,也就是网页停留时间的统计方法,有需要的朋友参考下。

例子,js统计与显示网页停留时间的代码。
 

复制代码 代码示例:

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>显示网页停留时间_www.jb200.com</title>
</head>
<body bgcolor="#336699" onunload="bye()">
<script language="javascript">
<!-- begin
pageopen = new date();

function bye() {
pageclose = new date();
minutes = (pageclose.getminutes() - pageopen.getminutes());
seconds = (pageclose.getseconds() - pageopen.getseconds());
time = (seconds + (minutes * 60));
if (time == 1) {
time = (time + " 秒钟");
}
else {
time = (time + " 秒钟");
   }
alert('您在这儿呆了' + time + '.欢迎再来!');
}
// end -->
</script>
</body>
</html>

延伸阅读:页面停留时间与网站停留时间详解