博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置Cookie
阅读量:6636 次
发布时间:2019-06-25

本文共 1278 字,大约阅读时间需要 4 分钟。

var Site=new Object();		Site.Cookie={				_expires:24*3600*1000,				_domain:'.gdxxb.com',				set:function(name,value,expires,path,domain){					expires=new Date(new Date().getTime()+(expires?expires:this._expires));					document.cookie=name+"="+escape(value)+";expires="+expires.toGMTString()+";path="+(path?path:"/")+";domain="+(domain?domain:this._domain);				},				get:function(name){					var arr=document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));					if(arr!=null) return unescape(arr[2]);					return null;				},				clear:function(name,path,domain){					if(this.get(name)) document.cookie=name+"=; path="+(path?path:"/")+"; domain="+(domain?domain:this._domain)+"; expires=Fri, 02-Jan-1970 00:00:00 GMT";				}		};				var i = 0,			tempi = Site.Cookie.get("random_");		if(tempi){				i = tempi == 1 ? 2 : 1; //三元操作符(在 1 求值为 TRUE 时的值为 2,在 expr1 求值为 FALSE 时的值为 1。)				Site.Cookie.set("random_",i);		}else{				i = Math.round(Math.random()*1)+1, //随机出现1-2				Site.Cookie.set("random_",i);						}				var str = document.location.href,			index = str.indexOf("?"),			temp = "",			html= "";									if(index != -1){				temp = str.substring(index);							}			html='';		document.getElementById("iframebox").innerHTML=html;

  

转载于:https://www.cnblogs.com/xupeiyu/p/4571227.html

你可能感兴趣的文章
修改IDEA的配置目录
查看>>
【融云分析】 IM 即时通讯之链路保活
查看>>
微信小程序开发之在小程序里面打开web页面
查看>>
451 Sort Characters By Frequency
查看>>
PDF生成插件 TcPDF
查看>>
JavaScript中的原型与原型链
查看>>
Kafka 监控架构设计
查看>>
阿里云POLARDB荣膺2019中国数据库年度最佳创新产品
查看>>
关于UIImagePickerController使用3DTouch的Crash问题
查看>>
简单来看看JavaBean
查看>>
Android 滑动定位+吸附悬停效果实现
查看>>
国内唯一,阿里云入选全球区块链云服务报告,领先AWS、Google
查看>>
java B2B2C电子商务平台分析之十------服务网关zuul
查看>>
企业级框架整合Springmvc+mybatis+restful+bootstrap
查看>>
flutter沉浸式状态栏
查看>>
[转]Ubuntu 12.04软件中心安装flash插件过程失败解决办法
查看>>
47. SQL- 触发器之DDL 触发器
查看>>
Window server 2008服务器
查看>>
Linux查看系统cpu个数、核心书、线程数
查看>>
最新ThinkPHP V5在iis、nginx、apache下的安装过程、包含伪静态引起的错误
查看>>