久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      javascript如何刪除session

      javascript刪除session的方法:【setTimeout(function() { sessionStorage.clear(); window.parent.location.reload();var index =…】。

      javascript如何刪除session

      本文操作環(huán)境:windows10系統(tǒng)、javascript 1.8.5、thinkpad t480電腦。

      javascript關(guān)閉當(dāng)前頁面并清除session。

      頁面:

      <!DOCTYPE html>   <html>    <head>   <meta charset="UTF-8">   <title>js關(guān)閉當(dāng)前頁清除session</title>   </head>    <body>   <script language="javascript">   	function save() {  		//存儲(chǔ)session   		window.sessionStorage.setItem("this_session", "This is session!");  		   		window.sessionStorage.setItem("user", "This is User");  		//取出session   		var thisSession = window.sessionStorage.getItem("this_session");   		alert(thisSession);   	}  	//執(zhí)行sava()   	save();  	// 這個(gè)腳本是 ie6和ie7 通用的腳本   	//關(guān)閉當(dāng)前頁   	function custom_close() {  		       	if(confirm("您確定要關(guān)閉本頁嗎?")) {  			       	window.opener = null;  			       	window.open('', '_self');  			       	window.close();  			//清除session   		sessionStorage.clear();    		} else {}   	}  	function clearUser() {  		//   		sessionStorage.removeItem("user");    	}  	//關(guān)于session    </script>    <input id="btnClose" type="button" value="關(guān)閉本頁" onClick="custom_close()" />   <br/><br/><br/><br/>   <input id="btnClose" type="button" value="清除User信息" onClick="clearUser()" />    </body>    </html>

      layui

      //設(shè)定時(shí)間一秒后觸發(fā)   setTimeout(function() {   		sessionStorage.clear();  		   		window.parent.location.reload();//刷新父頁面   		var index = parent.layer.getFrameIndex(window.name);   		parent.layer.close(index); //關(guān)閉當(dāng)前頁    	}, 1000);

      推薦學(xué)習(xí):javascript視頻教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)