国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

JS通過Cookie判斷頁面是否為首次打開

2019-11-20 10:36:54
字體:
來源:轉載
供稿:網友

廢話不多說了,直接給大家貼代碼了,本文寫的不好還請各位大俠見諒。

JScript code:

function Cookie(key,value){this.key=key;if(value!=null){this.value=escape(value);}this.expiresTime=null;this.domain=null;this.path="/";this.secure=null;}Cookie.prototype.setValue=function(value){this.value=escape(value);}Cookie.prototype.getValue=function(){return (this.value);}Cookie.prototype.setExpiresTime=function(time){this.expiresTime=time;}Cookie.prototype.getExpiresTime=function(){return this.expiresTime;}Cookie.prototype.setDomain=function(domain){this.domain=domain;}Cookie.prototype.getDomain=function(){return this.domain;}Cookie.prototype.setPath=function(path){this.path=path;}Cookie.prototype.getPath=function(){return this.path;}Cookie.prototype.Write=function(v){if(v!=null){this.setValue(v);}var ck=this.key+"="+this.value;if(this.expiresTime!=null){try{ck+=";expires="+this.expiresTime.toUTCString();;}catch(err){alert("expiresTime參數錯誤");}}if(this.domain!=null){ck+=";domain="+this.domain;}if(this.path!=null){ck+=";path="+this.path;}if(this.secure!=null){ck+=";secure";}document.cookie=ck;}Cookie.prototype.Read=function(){try{var cks=document.cookie.split("; ");var i=0;for(i=0;i <cks.length;i++){var ck=cks[i];var fields=ck.split("=");if(fields[0]==this.key){this.value=fields[1];return (this.value);}}return null;}catch(err){alert("cookie讀取錯誤");return null;}}

HTML code:

<script type="text/javascript" src="Cookie.js"></script><script type="text/javascript" language="javascript">window.onload=function(){var ck=new Cookie("HasLoaded"); //每個頁面的new Cookie名HasLoaded不能相同if(ck.Read()==null){//未加載過,Cookie內容為空alert("首次打開頁面");//設置保存時間var dd = new Date();dd = new Date(dd.getYear() + 1900, dd.getMonth(), dd.getDate());dd.setDate(dd.getDate() + 365);ck.setExpiresTime(dd);ck.Write("true"); //設置Cookie。只要IE不關閉,Cookie就一直存在}else{//Cookie存在,表示頁面是被刷新的alert("頁面刷新");}}</script>

以上所述是小編給大家分享JS通過Cookie判斷頁面是否為首次打開的相關內容,希望對大家有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 靖西县| 咸丰县| 恩施市| 乌什县| 颍上县| 泰顺县| 醴陵市| 铜梁县| 长垣县| 韶关市| 沾化县| 南宫市| 寿光市| 平凉市| 桂平市| 秦皇岛市| 邯郸市| 正镶白旗| 鹤岗市| 盐山县| 双辽市| 张北县| 定襄县| 吴川市| 新民市| 定襄县| 古蔺县| 淮阳县| 屏东市| 仙桃市| 桃源县| 吕梁市| 乳源| 从江县| 龙门县| 英吉沙县| 富蕴县| 饶平县| 怀远县| 太白县| 富锦市|