博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
localstorage和cookie封装在一起更方便
阅读量:5129 次
发布时间:2019-06-13

本文共 1154 字,大约阅读时间需要 3 分钟。

用(function (win,doc) {
})(window,document);把localstorage和cookie封装在一起,以后要用的时候就可以直接调用,不用写很多代码,如同:
(function (win,doc) {
var localStorage_cookie = {
//这是创建localstorage 如果要用localstorage就直接调用 items: function (argument) {
if (typeof argument == 'object') { //创建 for (var i in argument) {
win.localStorage.setItem(i, argument[i]); } } else if (typeof argument == 'string') { //获取 return win.localStorage.getItem(argument); } else {
return console.error('参数只能是json或者string'); } }, //这是创建cookie,如果要用cookie就直接调用
  //设置cookie  删除cookie   @param name  @param value   // @param time  多少秒 如果设置了time代表设置定时过期的cookie
set_cookie:function setCookie(name,value,time) {
var d = new Date(new Date().getTime()+time*1000).toGMTString(); document.cookie = ''+name+ '=' + value + ';expires=' + d; }, win.localStorage_cookie = localStorage_cookie; })(window,document); 学会封装之后,在以后要用到这些的时候直接调用就可以节省很多时间,也会减少一些重复的代码

转载于:https://www.cnblogs.com/kongweimei/p/6928733.html

你可能感兴趣的文章
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>