jquery 中的cookie
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>无标题文档</title>
<scripttype="text/javascript"src="jquery-1.6.2.js"></script>
<scripttype="text/javascript"src="Cookie.js"></script>
<scripttype="text/javascript">
$(function(){
varCOOKIE_NAMNE='username';
if($.cookie(COOKIE_NAMNE)){
$("#username").val($.cookie(COOKIE_NAMNE));
}
$("#check").click(function(){
if(this.checked){
$.cookie(COOKIE_NAMNE,$("#username").val(),{path:'/',expires:10});
}else{
$.cookie(COOKIE_NAMNE,null,{path:'/',expires:10});
}
});
});
</script>
</head>
<body>
用户名:<inputtype="text"name="username"id="username"/>
<inputtype="checkbox"name="check"id="check"/>记住用户名
</body>
</html>