标签:清空 htm title rem text gif oca storage json
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
<script type="text/javascript">
var data={
name:‘taytay‘,
sex:‘woman‘,
hobby:‘program‘
};
var e=JSON.stringify(data);
window.localStorage.setItem("shuju",e);
// window.localStorage.setItem(key,value);//设置指定key的数据(JSON格式)
// window.localStorage.getItem(key);//获取指定key的数据
// window.localStorage.removeItem(key);//删除指定key的数据
// window.localStorage.clear();//清空所有的存储数据
// window.sessionStorage.setItem(key,value);
// window.sessionStorage.getItem(key);
// window.sessionStorage.removeItem(key);
// window.sessionStorage.clear();
</script>
</html>
标签:清空 htm title rem text gif oca storage json
原文地址:https://www.cnblogs.com/kaijiangyugty/p/11229188.html