한국어
<!--把如下代码加入<body>区域中 --> <SCRIPT LANGUAGE="JavaScript"> <!-- Start var expDays = 30; var exp = 새로운 날짜(); exp.setTime(exp.getTime() + (expDays*24*60*60*1000)); function Who(info){ var VisitorName = GetCookie('VisitorName') if (VisitorName == null) { VisitorName = 프롬프트("당신은 누구입니까?"); SetCookie('VisitorName', 방문자 이름, exp); } 방문자 이름을 반환합니다. } function When(info){ var rightNow = new Date() var WWHTime = 0; WWHTime = GetCookie('WWhenH') WWHTime = WWHTime * 1 var lastHereFormatting = new Date(WWHTime); var intLastVisit = (lastHereFormatting.getYear() * 10000)+(lastHereFormatting.getMonth() * 100) + lastHereFormatting.getDate() var lastHereInDateFormat = "" + lastHereFormatting; var dayOfWeek = lastHereInDateFormat.substring(0,3) var dateMonth = lastHereInDateFormat.substring(4,11) var timeOfDay = lastHereInDateFormat.substring(11,16) var year = lastHereInDateFormat.substring(23,25) var WWHText = dayOfWeek + " , " + dateMonth + " at " + timeOfDay SetCookie("WWhenH", rightNow.getTime(), exp) return WWHText } function Count(info){ var WWHCount = GetCookie('WWHCount') if (WWHCount == null) { WWH카운트 = 0; } else{ WWHCount++; } SetCookie('WWHCount', WWHCount, exp); WWHCount를 반환합니다. } function set(){ VisitorName = 프롬프트("당신은 누구입니까?"); SetCookie('VisitorName', 방문자 이름, exp); SetCookie('WWHCount', 0, exp); SetCookie('WWhenH', 0, exp); } function getCookieVal(offset) { var endstr = document.cookie.indexOf(";", offset); if (endstr == -1) endstr = document.cookie.length; return unescape(document.cookie.substring(offset, endstr)); } function GetCookie (이름) { var arg = 이름 + "="; var alen = 인수.길이; var clen = document.cookie.length; var 나는 = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) 중단; } null을 반환합니다. } function SetCookie(이름, 값) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var 만료 = (argc > 2) ? 인수[2] : null; var 경로 = (argc > 3) ? 인수[3] : null; var 도메인 = (argc > 4) ? 인수[4] : null; var secure = (argc > 5) ? argv[5] : 거짓; document.cookie = 이름 + "=" + 이스케이프(값) + ((만료 == null) ? "" : ("; 만료=" + 만료.toGMTString())) + ((경로 == null) ?" " : ("; path=" + 경로)) + ((도메인 == null) ? "" : ("; domain=" + 도메인)) + ((보안 == true) ? "; 보안" : "" ); } function DeleteCookie (이름) { var exp = new Date(); exp.setTime(exp.getTime() - 1); var cval = GetCookie(이름); document.cookie = 이름 + "=" + cval + "; 만료=" + exp.toGMTString(); } // 종료 --> </SCRIPT> <SCRIPT LANGUAGE="JavaScript"> document.write("Hello " + Who() + ". <br>您已经登录本站" + Count() + " 次了.<br>上次登录是:" + When() +"."); </SCRIPT>