爽快 直接贴上代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cookie</title>
</head>
<body>
<button type="button" onclick="SetCookie('pcy1','pangchengyong1')">SetCookie</button>
<button type="button" onclick="getCookie('pcy')">getCookie</button>
<button type="button" onclick="DelCookie('pcy')">DelCookie</button>
</body>
</html>
<script>
/*****************************************
根据name取得存在cookie中的值
*******************************************/
function getCookie(name){
// 获取所有的cookie
var value = document.cookie;
// 将cookie 转换成数组格式
var arr1 = value.split(";");
// 循环判断 传入的name 是否与cookie的name相同
for(i=0;i<arr1.length;i++){
if(value.length == 0){
break;
}
// 获取 cookie的 name
sName = arr1[i].split("=")[0];
// 如果 name==name 就显示val
if(sName==name){
return arr1[i].split("=")[1];
}
}
return null;
}
/*****************************************
设置cookie的内容
*******************************************/
function SetCookie(sName,sValue){
//有点类似与匿名类哦
var expires = function(){
//cookie失效时间为从建立起48小时一内
var mydate = new Date();
mydate.setTime(mydate.getTime + 48*60*60*1000);
return mydate.toGMTString();
}
if(sName.length!=0 && sValue.length!=0){
document.cookie = sName + "=" + sValue + ";expires=" + expires;
}else{
alert("您的填写有空!");
}
}
/*****************************************
删除cookie
*******************************************/
function DelCookie(sName,sValue){
//删除一个指定的cookie键值对
document.cookie = sName + "=" + escape(sValue) + ";expires=Fri, 31 Dec 1999 23:59:59 GMT;";
}
/*****************************************
删除cookie
*******************************************/
function DelCookie(sName){
var sValue=getCookie(sName);
if(sValue!=null){
document.cookie = sName + "=" + escape(sValue) + ";expires=Fri, 31 Dec 1999 23:59:59 GMT;";
}
}
/*****************************************
清空cookie
*******************************************/
function clearCookie(){
var value = document.cookie;
var arr1 = value.split(";");
for(i=arr1.length-1;i>=0;i--){
if(value.length == 0){
break;
}
sName = arr1[i].split("=")[0];
sValue = arr1[i].split("=")[1]
document.cookie = sName + "=" + escape(sValue) + ";expires=Fri, 31 Dec 1999 23:59:59 GMT;";
}
}
</script>