php

位置:IT落伍者 >> php >> 浏览文章

PHP典型模块与项目实战大全:客户端数据存储机制cookie[2]


发布日期:2022年01月17日
 
PHP典型模块与项目实战大全:客户端数据存储机制cookie[2]

<html>

<head>

<script type=text/javascript>

function getCookie(c_name) //获得cookie

{

if (documentcookielength>

{

c_start=documentcookieindexOf(c_name + =

if (c_start!=

{

c_startc_start=c_start + c_namelength+

c_end=documentcookieindexOf(;c_start)

if (c_end==) c_end=documentcookielength

return unescape(documentcookiesubstring(c_startc_end)) //返回客户端cookie的值

}

}

return

}

function setCookie(c_namevalueexpiredays) //设置cookie

{

var exdate=new Date()

exdatesetDate(exdategetDate()+expiredays)

documentcookie=c_name+ = +escape(value)+

((expiredays==null) ? : ;expires=+exdatetoGMTString())

}

function checkCookie() //检查cookie

{

username=getCookie(username

if (username!=null && username!=

{alert(Welcome again +username+!)} //弹出欢迎信息

else

{

username=prompt(Please enter your name:

if (username!=null && username!=

{

setCookie(usernameusername) //重置cookie值

}

}

}

</script>

</head>

<body onLoad=checkCookie()>

</body>

</html>

返回目录PHP典型模块与项目实战大全

编辑推荐

Java Web开发详解

PHP Web开发学习实录

ASP NET开发培训视频教程

[] []

               

上一篇:PHP典型模块与项目实战大全:控制IE的弹出页面

下一篇:PHP典型模块与项目实战大全:客户端数据存储机制cookie[1]