function www_helpor_net(offset) {
var endstr = document.cookie .indexOf(";", 오프셋);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie(이름) {
var arg = name "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i alen;
if (document.cookie.substring(i, j) == arg)
return www_helpor_net(j);
i = document.cookie.indexOf(" ", i) 1;
if (i == 0)
break;
}
null을 반환합니다.
}
function SetCookie(이름, 값) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var 만료 = (2 < argc) ? 인수[2] : null;
var 경로 = (3 < argc) ? 인수[3] : null;
var 도메인 = (4 < argc) ? 인수[4] : null;
var secure = (5 < argc) ? argv[5] : 거짓;
document.cookie = 이름
"="
escape(value)
((expires == null) ? "" : ("; 만료=" 만료
.toGMTString()) )
((경로 == null) ? "" : ("; path=" 경로))
((도메인 == null) ? "" : ("; domain=" 도메인))
((secure == true) ? "; secure" : "");
}
var expdate = new Date();
var 방문;
expdate.setTime(expdate.getTime() (24 * 60 * 60 * 1000 * 365)); //设置COOKIES时间为1年,自己随便设置该时间
if (!(visits = GetCookie("visits"))) {
visits = 0;
}
var oldjessionid = GetCookie("OLDJSESSIONID");
if (!oldjessionid) {
oldjessionid = "111";
}
var newjessionid = GetCookie("JSESSIONID");
if (oldjessionid != newjessionid) {
방문 ;
SetCookie("OLDJSESSIONID", newjessionid, expdate, "/", null, false);
SetCookie("방문", 방문, expdate, "/", null, false);
}
//以下信息显示可以使用标准的HTML语法,自己随便设置
document.write("你已经光临本页" " " 방문 "" "次!");
//当登录次数达到三次,就自动调用函数,隐藏弹框,如果只要记录登录次数,下边代码可忽略
if (방문 횟수 > 3) {
setInterval(" changeH('down')", 2);
} */