码迷,mamicode.com
首页 > Web开发 > 详细

JS基于时间戳写的浏览访问人数

时间:2015-03-07 18:24:48      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

Title:JS基于时间戳写的浏览访问人数  --2013-12-23 14:07

<script language="JavaScript">
 var timestamp,timetmp,rand;
 rand = Math.floor(Math.random()*10); //随机数
 timestamp = new Date().getTime().toString(); //时间戳
 timetmp = (parseInt(timestamp)/1000/60).toString(); //截取长度+随机数
 timetmp = timetmp.substring(2,8);
 timetmp = (parseInt(timetmp)-120000).toString();
 if(timetmp.length==4){
  timetmp = "00"+timetmp;
 }else if(timetmp.length==5){
  timetmp = "0"+timetmp;
 } 
 var aa = $(".rs_A");
 for(var i=0; i < timetmp.length; i++){
  aa[i].innerHTML = timetmp.substr(i,1);
 }
 </script>

  最后给LI标签赋值

<script language="JavaScript">
var timestamp,timetmp,rand;
rand = Math.floor(Math.random()*10); //随机数
timestamp = new Date().getTime().toString(); //时间戳
timetmp = (parseInt(timestamp.substr(5,6))+rand).toString(); //截取长度+随机数
document.write("时间戳:"+timestamp);
document.write(‘</br>‘);
document.write("随机数:"+rand);
document.write(‘</br>‘);
document.write("访问量:"+timetmp);
</script>

  实用的话,还得再改改。

JS基于时间戳写的浏览访问人数

标签:

原文地址:http://www.cnblogs.com/TeaIng-Index/p/4320696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!