twitter
    Find out what I'm doing, Follow Me :)

如何制作访客最后来访记录

如何制作访客最后来访记录要添加此好工具到您的博客只需遵循这几个简单的步骤就可以了。

1.进入您的控制台--> 布局- -> 页面元素。

2.在侧边栏单击 "添加小工具"。

3.选择" HTML/JavaScript "然后把以下的脚本贴上和单击储存.


<script type = "text/javascript">

var days = 730; // days until cookie expires = 2 years.
var lastvisit=new Object();
var firstvisitmsg="(。◕‿◕。)这是您第一次到访本站. 欢迎光临!(。◕‿◕。)";
lastvisit.subsequentvisitmsg="(。◕‿◕。)欢迎回来! 您最后来访日期是在 <br /><b>[displaydate]</b>";

lastvisit.getCookie=function(Name){
var re=new RegExp(Name+"=[^;]+", "i");
if (document.cookie.match(re))
return document.cookie.match(re)[0].split("=")[1];
return'';
}

lastvisit.setCookie=function(name, value, days){
var expireDate = new Date();

var expstring=expireDate.setDate(expireDate.getDate()+parseInt(days));
document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/";
}

lastvisit.showmessage = function() {
var wh = new Date();
if (lastvisit.getCookie("visitc") == "") {
lastvisit.setCookie("visitc", wh, days);
document.write(firstvisitmsg);
}

else {
var lv = lastvisit.getCookie("visitc");
var lvp = Date.parse(lv);
var now = new Date();
now.setTime(lvp);
var day = new Array("星期天", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六");
var month = new Array ("正月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月");
var dd = now.getDate();
var dy = now.getDay();
dy = day[dy];
var mn = now.getMonth();
mn = month[mn];
yy = now.getFullYear();
var hh = now.getHours();
var ampm = "上午";
if (hh >= 12) {ampm = "下午"}
if (hh >12){hh = hh - 12};
if (hh == 0) {hh = 12}
if (hh < 10) {hh = "0" + hh};
var mins = now.getMinutes();
if (mins < 10) {mins = "0"+ mins}
var secs = now.getSeconds();
if (secs < 10) {secs = "0" + secs}
var dispDate = dy + ", " + mn + " " + dd + ", " + yy + " " + hh + ":" + mins + ":" + secs + " " + ampm
document.write(lastvisit.subsequentvisitmsg.replace("\[displaydate\]", dispDate))
}

lastvisit.setCookie("visitc", wh, days);

}

lastvisit.showmessage();

</script>



4.现在把它储存然后刷新页面就大功告成,是不是很简单赶快试咯!!!

0 评论:

发表评论