cookie

Posted freddyhuang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cookie相关的知识,希望对你有一定的参考价值。

<script>
			window.onload=function(){
				var oMask=document.getElementById(‘mask‘);
				var oSearch=document.getElementById(‘searchTip‘);	
				var aStep=oSearch.getElementsByTagName(‘div‘);
			
				//读取cookie
				function getCookie(name)
				{
				    var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)"); //正则匹配
				    if(arr=document.cookie.match(reg)){
				      return unescape(arr[2]);
				    }
				    else{
				     return null;
				    }
				} 
				var res = getCookie(‘name‘)
				
				//alert(res)
				if(res!="www.zidingzhi.com"){
					
					oMask.style.display=oSearch.style.display=aStep[0].style.display="block";
					
					for( var i=0; i<aStep.length; i++){
						(function(index){
							aStep[i].onclick=function(){
							this.style.display="none";
							if(index<aStep.length-1){
								aStep[index+1].style.display="block";
							 }
							 else if(index==aStep.length-1){
								oMask.style.display="none";
								this.style.display=oSearch.style.display="none";
							}
						 }
						})(i)	
					}
					
				//定义cookie
				var oDate=new Date();
				oDate.setDate(oDate.getDate()+30);
				document.cookie="name=www.zidingzhi.com;expires="+oDate;
				}
			}
		</script>

  

以上是关于cookie的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript单行代码,也就是代码片段

XSS:如何从 C# 中的字符串中删除 JS 片段?

Django cookie 横幅:window.wpcc 未定义

最详细的cookie和浏览隐私之间的关系

c#如何采集需要登录的页面

IE无法获得cookie,ie不支持cookie的解决办法,火狐支持