使用html5web存储的localstorage和ssionstorage方式进行web页面数据本地存储。
页面参考如下图,能将页面上的数据进行本地存储。并能读取存储的数据显示在页面上。
localstorage(本地存储),可以长期存储数据,没有时间限制,一天,一年,两年甚至更长,数据都可以使用。
ssionstorage(会话存储),只有在浏览器被关闭之前使用,创建另一个页面时同意可以使用,关闭浏览器之后数据就会消失。
某个博主的测试localstorage兼容情况,如下:
chrome4+ 开始支持localstorage
firefox3.5+开始支持localstorage
firefox1.5+支持globalstorage
ie8+支持localstorage
ie7兼容模式支持loqq手机绑定calstorage
ie5.5+支持urdata
safari 4+ 支持localstorage
opera10.5+支持localstorage
复制代码 代码如下:
<!doctype html>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”content-type” content=”text/html; chart=utf-8″ />
<title></title>
<style type=”text/css”>
textarea {
width: 300px;
height: 300px;
}
.button {
width: 100px;
}
</style>
</head>
<body>
<script type=”text/javascript”>
//使用html5 web存储的localstorage和ssionstorage方式进行web页面数据本地存储。
//页面参考如下图,能将页面上的数据进行本地存储。并能读取存储的数据显示在页面上。
function savession() {
var t1 = document.getelementbyid(“t1”);
var t2 = document.getelementbyid(“t2”);
var mydata = t2.value;
var ostorage = window.ssionstorage;
ostorage.mydata = mydata;
t1.value += “ssionstorage保存mydata:” + mydata + “\n”;
}
function readssion() {
var t1 = do最美姑娘cument.getelementbyid(“t1”);
var ostorage = window.ssionstorage;
var mydata = “不存在”;
if (ostorage.mydata) {
mydata = ostorage.mydata;
}
t1.value += “ssionstorage读取mydata:” + mydata + “\n”;
}
function cleanssion() {
var t1 = document.getelementbyid(“t1”);
var ostorage = window.ssionstorage;
var mydata = “不存在”;
if (ostorage.mydata) {
mydata = ostorage.mydata;
}
ostorage.removeitem(“mydata”);
t1.value += “ssionstorage清除mydata:” + mydata + “\n”;
}
function savestorage() {
var t1 = document.getelementbyid(“t1”);
var t2 = document.getelementbyid(“t难以启齿的柔弱2”);
var mydata = t2.value;
var ostorage = window.localstorage;
ostorage.mydata = mydata;
t1.value += “localstorage保存mydata:” + mydata + “\n”;
}
function readstorage() {
var t1 = document.getelementbyid(“t1”);
var ostorage = window.localstorage;
var mydata = “不存在”;
if (ostorage.mydata) {
mydata = ostorage.mydata;
}
t1.value += “localstorage读取mydata:” + mydata + “\n”;
}
function cleanstorage() {
var t1 = document.getelementbyid(“t1”);
var ostorage = window.localstorage;
var mydata = “不存在”;
if (ostorage.mydata) {
mydata = ostorage.国培计划网站mydata;
}
ostorage.removeitem(“mydata”);
t1.value += “localstorage清除mydata:” + mydata + “\n”;
}
</script>
<div>
<textarea id=”t1″></textarea>
<label>需要保存的数据: </label>
<input type=”text” id=”t2″ />
<input type=”button” class=”button” onclick=”savession()” name=”b1″ value=”ssion保存” />
<input type=”button” class=”button” onclick=”readssion()” value=”ssion读取” />
<input type=”button” class=”button” onclick=”cleanssion()” value=”ssion清除” />
<input type=”button” class=”button” onclick=”savestorage()” value=”local保存” />
<input type=”button” class=”button太空课8221; onclick=”readstorage()” value=”local读取” />
<input type=”button” class=”button” onclick=”cleanstorage()” value=”local清除” />
</div>
</body>
</html>
本文发布于:2023-04-03 07:01:47,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/804e0fa1173c3e4a70df5854bedabe8f.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:HTML5 Web存储方式的localStorage和sessionStorage进行数据本地存储案例应用.doc
本文 PDF 下载地址:HTML5 Web存储方式的localStorage和sessionStorage进行数据本地存储案例应用.pdf
留言与评论(共有 0 条评论) |