//創(chuàng)建一個Cookie
function writeCookie()
{
var destoryTime = new Date();
destoryTime.setTime(destoryTime.getTime()+24*3600*1000);
var expireTime = destoryTime.toGMTString();
document.cookie = "vistited=true"+";expires="+expireTime+";";
document.write("<div id='tip'>歡迎首次光臨sky論壇,5秒之后您返回論壇首頁。。</div>");
setTimeout("backToMainPage()",5000);
}
function backToMainPage()
{
window.loaction.;
}
var isCookieExist;
IsCookieExist = doucment.cookie.length;
if(!isCookieExist)
writeCookie();
else
{
var cookieContent = document.cookie;
var checkStatus = "visited=";
var startIndex = cookieContent.indexOf(checkStatus);
if(startIndex !=-1)
{
startIndex += checkStatus.length;
var endIndex = cookieContent.indexOf(",",startIndex);
if(endIndex ==-1)
endIndex = cookieContent.length;
var result = unescape(cookieContent.substring(startIndex,endIndex));
if(result != "true")
writeCookie();
else
document.write("<div id='tip'>歡迎再次來到本論壇</div>")
}else
writeCookie();
}
如對本文有疑問,請?zhí)峤坏浇涣髡搲?,廣大熱心網友會為你解答??! 點擊進入論壇