css的基本选择器 和设置cookie的一些代码
2021-07-03 06:03
// 设置带过期时间的cookie
var date=new Date();
var d=new Date(date.setTime(date.getTime()+10000));//toGMTString()前面的调用者必须是时间对象
document.cookie=‘name1=haa1;expires=‘+ d.toGMTString();
document.cookie=‘name2=haa2;expires=‘+ d.toGMTString();
document.cookie=‘name3=haa3;expires=‘+ d.toGMTString();//获取cookie
var cookie=document.cookie.split(‘:‘);
var value=‘‘;
cookie.forEach(function(val,index){
if(val.split(‘=‘)[0]==‘name3‘){
value=val.split(‘=‘)[1];
}
});
console.log(value);/**
* 删除cookie
* @type {string}
* @name 需要删除的cookie 名字
* toGMTString() 注意:时间格式最后一定要用这个方法转换
*/
document.cookie=‘name="";expires=‘+new Date().toGMTString();
上一篇:基于Axis1.4的webservice接口开发(代码开发)
下一篇:JSDOM
文章标题:css的基本选择器 和设置cookie的一些代码
文章链接:http://soscw.com/index.php/essay/101129.html