jQuery的cookie插件实现保存用户登陆信息
更新时间:2014年04月15日 16:16:04 作者:
保存用户登陆信息的方法有很多,本文为大家介绍的这个方法是通过cookie插件来实现,需要的朋友可以参考下
复制代码 代码如下:
<!DOCTYPE html>
<html>
<head>
<title>cookies.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
.txt{
width: 150px;
height:20px;
border: 1px blue solid;
border-radius:0.5em;
margin-bottom: 5px;
padding-left: 5px;
}
</style>
<script type="text/javascript" src="../js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="../js/jquery.cookie.js"></script>
<script type="text/javascript">
$(function(){
if($.cookie("name")){
//取值如果存在则赋值
$("#username").val($.cookie("name"));
}
$("#mycookie").submit(function(){
//如果选中了保存用户名选项
if($("#chkSave").is(":checked")){
//设置Cookie值
$.cookie("name",$("#username").val(),{
expires:7,//设置保存期限
path:"/"//设置保存的路径
});
}else{
//销毁对象
$.cookie("name",null,{
path:"/"
});
}
return false;
});
});
</script>
</head>
<body>
<form action="#" method="get" id="mycookie">
<div>
用户名:<br>
<input id="username" name="username" type="text" class="txt">
</div>
<div>
密码:<br>
<input id="password" name="password" type="password" class="txt">
</div>
<div>
<input id="chkSave" type="checkbox">是否保存用户名
</div>
<div>
<input id="cookBtn" class="btn" type="submit" value="提交">
</div>
</form>
</body>
</html>
相关文章
从零开始学习jQuery (十) jQueryUI常用功能实战
本文是实战篇. 使用jQueryUI完成制作网站的大部分常用功能.2011-02-02jquery改变disabled的boolean状态的三种方法
改变disabled的boolean状态,下面为大家介绍三种比较不错的方法,大家可以参考下2013-12-12jQuery EasyUI 中文API Button使用实例
jQuery EasyUI 中文API Button使用小结,需要的朋友可以参考下。2010-04-04jQuery+datatables插件实现ajax加载数据与增删改查功能示例
这篇文章主要介绍了jQuery+datatables插件实现ajax加载数据与增删改查功能,涉及jQuery结合datatables插件针对页面表格实现数据加载及增删改查等相关操作技巧,需要的朋友可以参考下2018-04-04
最新评论