Jquery cookies操作 博客分类: Jquery jqueryjavascripthtmlXHTML
程序员文章站
2024-03-16 08:04:40
...
jQuery操作cookie的插件,大概的使用方法如下 $.cookie('the_cookie'); //读取Cookie值 $.cookie('the_cookie', 'the_value'); //设置cookie的值 $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});//新建一个cookie 包括有效期 路径 域名等 $.cookie('the_cookie', 'the_value'); //新建cookie $.cookie('the_cookie', null); //删除一个cookie 设置一个名称为exist,值为exist的cookie: $.cookie("exist", "exist"); 设置一个名称为exist,值为exist的cookie,同时设置过期时间(expires属性)为7天: $.cookie("exist", "exist", { expires: 7 }); 设置一个名称为exist,值为exist的cookie,设置过期时间(expires属性)为7天,同时设置cookie的path属性为”/admin” $.cookie("exist", "exist", { path: '/admin', expires: 7 }); 读取Cookie: 读取名称为exist的cookie值: alert( $.cookie("exist") ); 删除cookie: $.cookie("example", null); 例如: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script src="../Scripts/jquery-1.4.1.min.js"></script> <script src="../Scripts/jquery.cookie.js"></script> <script type="text/javascript"> $(document).ready(function () { var i = 1; //当点击按钮的时候隐藏《p》 $("#clk_Submit").click(function () { //判断是否存在cookies对象 if ($.cookie("exist") == null || $.cookie("exist") == "undefined") { //创建cookies对象并且给其赋值,设置了生命周期为7天 $.cookie("exist", i, { expires: 7 }); } //获取cookies值 i = $.cookie("exist"); //判断是否为0 if (i % 2 != 0) { $("p").hide(); } else { $("p").show(); } i++; //保存到cookies里面 $.cookie("exist", i); }) }); </script> </head> <body> <form id="form1" runat="server"> <div> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button type="button" id="clk_Submit">Click me</button> </div> </form> </body> </html>
推荐阅读
-
Jquery cookies操作 博客分类: Jquery jqueryjavascripthtmlXHTML
-
jQuery.holdReady(hold) 博客分类: IEjavascriptJquery jquery脚本javascript
-
jquery table 操作 博客分类: C#Jquery jqueryc#
-
jQuery.holdReady(hold) 博客分类: IEjavascriptJquery jquery脚本javascript
-
jQuery.autocomplete.js乱码问题 博客分类: C#JSONJqueryjQuery.autocomplete c#autocompleteJavaScriptjquery
-
编写Jquery插件 博客分类: javascriptJqueryhtml htmljqueryJavaScript
-
JQuery设置数据滑动展示效果 博客分类: JQuery 数据滑动 JQuery
-
Ajax 前端与后台交互 博客分类: Jquery ajax web前端ajax前后端交互
-
JQuery设置数据滑动展示效果 博客分类: JQuery 数据滑动 JQuery
-
Jquery中使用某个关键字进行查询时,table里面相关文字颜色变化 博客分类: javascriptJqueryhtml jqueryjavascriptxhtmlhtml