cookie对比localStorage哪个适合作为网站皮肤存储
cookie对比localStorage哪个适合作为网站皮肤存储
cookie
cookie : 一般由服务器生成,可设置失效时间。如果在浏览器生成,默认是关闭浏览器之后失效
存储大小:4k
每次都会携带在HTTP头中,如果使用 cookie 保存过多数据会带来性能问题
一般由服务器端生成,用于标识用户身份
缺点 : 原生的cookie用起来有点麻烦,如果用jQuery,则需要引入jquery库及jquery.cookie库
优点 : 兼容性比较好,对IE浏览器也很好兼容,可兼容IE6,厉害了我的哥
需要注意 : 本地支持cookie的浏览器有 : IE6+,火狐(目前测试过这些浏览器)
不支持的浏览器有:360浏览器,谷歌浏览器,欧朋浏览器(目前测试过这些浏览器)
但是把文件放到,浏览器中都有很好的支持
cookie调用方式
新添加一个会话cookie: $.cookie('the_cookie', 'the_value');
注:当没有指明cookie有效时间时,所创建的cookie有效期默认到用户关闭浏览器为止,所以被称为“会话cookie(session cookie)” 创建一个cookie并设置有效时间为7天: $.cookie('the_cookie', 'the_value', { expires: 7 });
注:当指明了cookie有效时间时,所创建的cookie被称为“持久cookie(persistent cookie)”。 创建一个cookie并设置cookie的有效路径:
$.cookie('the_cookie', 'the_value', { expires: 7, path: '/' });
注:在默认情况下,只有设置cookie的网页才能读取该cookie。如果想让一个页面读取另一个页面设置的cookie,必须设置cookie的路径。
cookie的路径用于设置能够读取cookie的顶级目录。将这个路径设置为网站的根目录,可以让所有网页都能互相读取cookie(一般不要这样设置,防止出现冲突) 读取cookie:
$.cookie('the_cookie');
// cookie存在 => 'the_value' $.cookie('not_existing'); // cookie不存在 => null 删除cookie,通过传递null作为cookie的值即可:
$.cookie('the_cookie', null);
localStorage
LocalStorage : 除非被清楚,否则永久保存
一般 5MB
仅在客户端中保存,不参与和服务器的通信。
用于浏览器端缓存数据
缺点 : 对IE浏览器有兼容性问题,官网说能兼容IE8+,可我的浏览器IE10也没有效果,到现在还未解决此问题,如果有人知道,请留言告知我,谢谢
优点 : 用起来非常简单,直接申明变量即可
需要注意 :经过测试:在本地中IE所有浏览器均不支持LocalStorage,其他浏览器都支持
部署到服务器中,IE8及IE8以上都支持LocalStorage
如果对IE没有很高的要求建议用LocalStorage,如果对IE有高要求那么建议用LocalStorage,因人而异
原理 : 通过改变link中的href路径,达到主题切换效果
LocalStorage 调用方式
localStorage.setItem("key","value");//存储变量名为key,值为value的变量 localStorage.key = "value"//存储变量名为key,值为value的变量 localStorage.getItem("key");//获取存储的变量key的值www.it165.net localStorage.key;//获取存储的变量key的值 localStorage.removeItem("key")//删除变量名为key的存储变量
效果图:
点击不同的色块,字体会变成不一样的颜色
运行我的dom之前,请在当前目录下新建一个css文件,然后在css文件中键入5个css主题文件
css文件
样式内容
localStorage技术
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>theme - localStorage</title>
<!--<link rel="stylesheet" id = "theme" href="css/green.css">-->
<style>
*{margin: 0;padding: 0}
.theme-style{overflow: hidden;margin: auto;width: 300px;}
.theme-style li{display: inline-block;width: 50px;height: 50px;margin-right: 0.5em;float: left;cursor: pointer}
.box{width: 400px;margin: auto;line-height: 40px;}
.theme-style li:nth-child(1){background: red}
.theme-style li:nth-child(2){background: green}
.theme-style li:nth-child(3){background:yellow}
.theme-style li:nth-child(4){background: pink}
.theme-style li:nth-child(5){background: orange}
</style>
</head>
<body>
<ul id="theme-style" class="theme-style">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="box">
<p>上周五下午三点收到一个沙特客户钢制更衣柜的询价. 严格意义上也算个老客户,两年前下过一个订单. 当时收到货后还比较满意,曾经有意向要做沙特的代理,后来因为经济情况不了了之.</p>
</div>
</body>
</html>
<script>
//自动加载加入节点
var link = document.createElement('link');
var head = document.getElementsByTagName('head')[0];
link.rel = 'stylesheet';
link.id = 'theme';
localStorage.getItem('url') ? link.href = localStorage.getItem('url') : link.href = 'css/red.css';
head.appendChild(link) //获取内联样式
function getCss(obj,name){
if(obj.currentStyle) {
return obj.currentStyle[name];
}
else {
return document.defaultView.getComputedStyle(obj,null)[name];
}
} var arr = ['red' , 'green' , 'yellow' , 'pink' , 'orange'];
var themeStyle = document.getElementById('theme-style').getElementsByTagName('li');
var link = document.getElementById('theme');
//更换样式
for(var i = 0 ; i < themeStyle.length ; i++ ){
(function(number){
themeStyle[i].onclick = function(){
localStorage.setItem('url','css/'+arr[number]+'.css');
link.setAttribute('href',localStorage.getItem('url'));
}
})(i);
}
</script>
cookie技术
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>theme - localStorage</title>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<!--<link rel="stylesheet" id = "theme" href="css/green.css">-->
<style>
*{margin: 0;padding: 0}
.theme-style{overflow: hidden;margin: auto;width: 300px;}
.theme-style li{display: inline-block;width: 50px;height: 50px;margin-right: 0.5em;float: left;cursor: pointer}
.box{width: 400px;margin: auto;line-height: 40px;}
.theme-style li:nth-child(1){background: red}
.theme-style li:nth-child(2){background: green}
.theme-style li:nth-child(3){background:yellow}
.theme-style li:nth-child(4){background: pink}
.theme-style li:nth-child(5){background: orange}
</style>
</head>
<body>
<ul id="theme-style" class="theme-style">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="box">
<p>上周五下午三点收到一个沙特客户钢制更衣柜的询价. 严格意义上也算个老客户,两年前下过一个订单. 当时收到货后还比较满意,曾经有意向要做沙特的代理,后来因为经济情况不了了之.</p>
</div>
</body>
</html>
<script>
//自动加载加入节点
var link = document.createElement('link');
var head = document.getElementsByTagName('head')[0];
link.rel = 'stylesheet';
link.id = 'theme';
$.cookie('url') ? link.href = $.cookie('url') : link.href = 'css/red.css';
head.appendChild(link) //获取内联样式
function getCss(obj,name){
if(obj.currentStyle) {
return obj.currentStyle[name];
}
else {
return document.defaultView.getComputedStyle(obj,null)[name];
}
} var arr = ['red' , 'green' , 'yellow' , 'pink' , 'orange'];
var themeStyle = document.getElementById('theme-style').getElementsByTagName('li');
var link = document.getElementById('theme');
//更换样式
for(var i = 0 ; i < themeStyle.length ; i++ ){
(function(number){
themeStyle[i].onclick = function(){
$.cookie('url','css/'+arr[number]+'.css' , { expires: 30 })
link.setAttribute('href',$.cookie('url'));
}
})(i);
}
</script>
cookie对比localStorage哪个适合作为网站皮肤存储的更多相关文章
- 深入了解浏览器存储:对比Cookie、LocalStorage、sessionStorage与IndexedDB
摘要: 对比Cookie.LocalStorage.sessionStorage与IndexedDB 作者:浪里行舟 Fundebug经授权转载,版权归原作者所有. 前言 随着移动网络的发展与演化,我 ...
- JS 详解 Cookie、 LocalStorage 与 SessionStorage
基本概念 Cookie Cookie 是小甜饼的意思.顾名思义,cookie 确实非常小,它的大小限制为4KB左右.它的主要用途有保存登录信息,比如你登录某个网站市场可以看到"记住密码&qu ...
- Cookie、LocalStorage 与 SessionStorage的区别在哪里?
基本概念 Cookie Cookie 是小甜饼的意思.顾名思义,cookie 确实非常小,它的大小限制为4KB左右.它的主要用途有保存登录信息,比如你登录某个网站市场可以看到“记住密码”,这通常就是通 ...
- session,cookie,sessionStorage,localStorage的区别及应用场景
session,cookie,sessionStorage,localStorage的区别及应用场景 浏览器的缓存机制提供了可以将用户数据存储在客户端上的方式,可以利用cookie,session等跟 ...
- 缓存session,cookie,sessionStorage,localStorage的区别
https://www.cnblogs.com/cencenyue/p/7604651.html(copy) 浅谈session,cookie,sessionStorage,localStorage的 ...
- js中cookie,localStorage(sessionStorage)的存取
一.cookie (原生的不好用,自己简单封装) 1. 存cookie的方法: function setCookie(c_name,value,expiredays) { var exdate=new ...
- cookie和localStorage、sessionStorage的区别
先来讲讲localStorage吧,我最初接触localStorage,是听一个同学说他在做项目的过程中用到过这个.但是我自己也用到过的,就是在学习React的时候,在做一个小demo,这个demo简 ...
- 什么是cookie(前段时间看到别人简历上把cookie和localStorage混淆了所以专门又去了解了下)
在前端面试中,有一个必问的问题:请你谈谈cookie和localStorage有什么区别啊? localStorage是H5中的一种浏览器本地存储方式,而实际上,cookie本身并不是用来做服务器存储 ...
- 详解Cookie、LocalStorage、SessionStorage
不管是笔试还是面试相信大家都会经常遇到问Cookie.LocalStorage.SessionStorage 这三个不同的,什么不说先上一波图先: 针对他们大小之分应用场景也有不同: 因为考虑到每个 ...
随机推荐
- hdu 1598 find the most comfortable road(并查集)
题意:略 分析:多询问问题,利用并查集加速.类似于kruskal对MST的构建:枚举最小的边,逐渐将更大的边加入集合,当查询的点在同一个集合,那么当前最小值,就是所加的最后一条边与第一条只差. 注意: ...
- root 执行过程权限问题
mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解决方法 权限问题,授权 给 root 所有sql ...
- centos6.9使用NTFS-3G挂载ntfs文件系统
centos6.9使用NTFS-3G挂载ntfs文件系统 工作中,难免需要到linux 系统上拷贝文件,但linux 自己不支持ntfs,下面就是解决问题的办法. NTFS-3G是一个开源软件,支持在 ...
- 【转】【Python + selenium】linux和mac环境,驱动器chromedriver和测试报告HTMLTestRunner放置的位置
感谢: 作者:gz_tester,文章:<linux和mac环境,chromedriver和HTMLTestRunner放置的位置> 使用场景 配置python selenium 环境 使 ...
- Java中synchronized用在静态方法和非静态方法上面的区别
synchronized 修饰在 static方法和非static方法的区别 在Java中,synchronized是用来表示同步的,我们可以synchronized来修饰一个方法.也可以sync ...
- c# 控制台程序 隐藏控制台窗口
在某些项目中,需要采用控制台程序,但是又不需要通过dos窗口进行交互,同时打算隐藏掉难看的控制台窗口.实现的方法很多,有的是修改链接命令.我采用的方法略有些麻烦,首先是给窗口命名,之后找到该窗口指针, ...
- leetCode 57.Insert Interval (插入区间) 解题思路和方法
Insert Interval Given a set of non-overlapping intervals, insert a new interval into the intervals ...
- 数据库导入Excel-从基础做起
近期一直跟着师傅做考试系统的基础.每天与大量的数据打交道.数据的导入.数据的导出.视图的导入导出.核对信息等等,收获挺多的,培养了自己的耐心和细心,也进一步了解了数据库. 一切从基础做起! 来看看近期 ...
- 基于python实现简单web服务器
做web开发的你,真的熟悉web服务器处理机制吗? 分析请求数据 下面是一段原始的请求数据: b'GET / HTTP/1.1\r\nHost: 127.0.0.1:8000\r\nConnectio ...
- iOS源代码管理svn
01. SVN介绍 SVN 是集中式源代码管理工具 概念: 1> Repository 代码仓库,保存代码的仓库 2> Server 服务器,保存所有版本的代码仓库 3&g ...