标签:href enter ast view 依赖 src comm meta utf-8
jquerysessionjs插件使用介绍
by:授客 QQ:1033553122
JQuery-3.2.1.min.j
下载地址:
https://gitee.com/ishouke/front_end_plugin/blob/master/jquery-3.2.1.min.js
jquerysession.js
下载地址:
https://gitee.com/ishouke/front_end_plugin/blob/master/jquerysession.js
win7
<!DOCTYPEhtml>
<html lang="zh-cn">
<head>
<metacharset="utf-8">
<metahttp-equiv="X-UA-Compatible" content="IE=edge">
<metaname="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<title>测试平台</title>
{% load staticfiles%}
<!-- jQuery (Bootstrap 的所有 JavaScript 插件都依赖 jQuery,所以必须放在前边) -->
<script type="text/javascript" src="{% static ‘website/jquery-3.2.1.min.js‘ %}" defer></script>
略……
<script type="text/javascript" src="{% static ‘website/js/jquerysession.js‘ %}" defer></script>
<link rel="stylesheet" type="text/css" href="{% static ‘website/css/common.css‘%}" />
<style type="text/css">
#login_url, #register_url{
display: none;
}
</style>
</head>
<body>
存储数据
1、不指定cookie过期时间
$.session.set(‘key‘, ‘value‘)
2、设置cookie过期时间
$.session.set(‘key‘, ‘value‘)
注:默认过期时间为2周
获取数据
$.session.get(‘key‘);
删除数据
$.session.remove(‘key‘);
清空所有数据
$.session.clear();
标签:href enter ast view 依赖 src comm meta utf-8
原文地址:https://www.cnblogs.com/shouke/p/11324146.html