>  기사  >  웹 프론트엔드  >  JS 기록 사용자 로그인 시간 구현 code_javascript 기술

JS 기록 사용자 로그인 시간 구현 code_javascript 기술

WBOY
WBOY원래의
2016-05-16 17:03:341615검색
复제대码 代码如下:

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);
} */
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.