改版了網上的一個js操作userdata

來源:互聯網
上載者:User

複製代碼 代碼如下:<input type=text id=a><button onclick="Session.save('a',a.value);"><button onclick="alert(Session.load('a'))">
<body>
<SCRIPT LANGUAGE="JavaScript">
<!--

var Session={
isinit:false,
init:function(){
SessionObj = document.createElement('input');
SessionObj.type = "hidden";
SessionObj.id = "Sessionid";
SessionObj.style.behavior = "url('#default#userData')"
document.body.appendChild(SessionObj);
this.isinit=true;
},
save:function(sessionName,value){
this.isinit?'':this.init();
if (sessionName != null && sessionName != ""){
SessionObj.setAttribute(sessionName,value)
SessionObj.save("s")
}
},
load:function(sessionName){
this.isinit?'':this.init();
if (sessionName != null && sessionName != ""){
SessionObj.load("s");
return SessionObj.getAttribute(sessionName);
}
}
}

//-->
</SCRIPT>

下面是其它網友文章:
js 儲存大量資料.
IE系列儲存到電腦上,直到刪除檔案.
FF關閉則刪除 複製代碼 代碼如下:<script>
//userData類
var RuserData={
o:null,
timeExpires:7,
browser:'',
//初始化userdata
init:function()
{
if(this.browser != '')
return true;
if(window.ActiveXObject)//for IE {
try{
this.o=document.createElement("input");
this.o.id="Ruserdata";
this.o.type="hidden";
this.o.style.behavior="url(#default#userData)";
this.browser='ie';
document.body.appendChild(this.o);
return true;
}catch(e){return false;}
}else if(window.sessionStorage)//FF 2.0+*/
{
try{
this.o=window.sessionStorage;
this.browser='ff';
return true;
}catch(e){return false;}
}
return false;
},
setVal:function(key,val,timeout/*正定義逾時時間,為空白用預設值*/){
this.init();
if(this.browser == 'ie'){
try{
this.o.load(key);
this.o.expires=typeof timeout == 'undefined' ? this.getTimeLimit(this.timeExpires) : this.getTimeLimit(timeout);
this.o.setAttribute('value',val);
this.o.save(key);
return true;
}catch(e){return false}
}else if(this.browser == 'ff'){
try{this.o.setItem(key,val);return true;}
catch(e){return false}
}
},
getVal:function(key){
this.init();
if(this.browser == 'ie'){
try{
this.o.load(key);
return this.o.getAttribute('value');
}catch(e){return false;}
}else if(this.browser == 'ff'){
try{return this.o.getItem(key);}
catch(e){return false}
}
},
delVal:function(key){
this.init();
if(this.browser == 'ie'){
try{
this.o.load(key);
this.o.expires=new Date(315532799000).toUTCString();
this.o.save(key);
return true;
}
catch(e){return false;}
}else if(this.browser == 'ff'){
try{this.o.removeItem(key);return true;}
catch(e){return false}
}
},
getTimeLimit:function(days/*設定逾時天數*/){
var d=new Date();
d.setDate(d.getDate() + days);
return d.toUTCString();
}
};
window.onload=function(){
//alert(RuserData.delVal('renchao'));
//alert(RuserData.setVal('renchao','指令碼之家www.jb51.net'));
alert(RuserData.getVal('renchao'));
}
</script>

使用方法: 複製代碼 代碼如下:window.onload=function(){
//alert(RuserData.delVal('renchao'));
//alert(RuserData.setVal('renchao','指令碼之家www.jb51.net'));
alert(RuserData.getVal('renchao'));
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.