頁面A里面有個(gè)showResult函數(shù),這個(gè)函數(shù)將頁面A中的localStorage數(shù)據(jù)寫入seesionStorage保存,準(zhǔn)備在頁面B里面使用。function showResult(){ var sname=[];
var time=[]
for(var i=0;i<localStorage.length;i++){
nameTmp=localStorage.key(i);
timeTmp=localStorage.getItem(nameTmp);
sname.push(nameTmp);
time.push(timeTmp);
}
sessionStorage.setItem("sname",sname);
sessionStorage.setItem("time",time);
location.href="model.html";
v=sessionStorage.getItem("sname");
alert(v);
}
上面的程序執(zhí)行后
1。從A頁面,跳轉(zhuǎn)到了B頁面(model.html)
2.在B頁面里,dom--sessionStorage里面成功保存了數(shù)據(jù)
3。為何alert(v)沒有正常運(yùn)行?
有報(bào)錯(cuò) uncaught exception: out of memory
請(qǐng)問,這是什么原因?
uncaught exception: out of memory
函數(shù)式編程
2018-09-11 13:42:46