美文网首页
jquery.cookie

jquery.cookie

作者: 秋玄语道 | 来源:发表于2018-07-08 23:19 被阅读0次

jquery.cookie的github地址

<!DOCTYPE HTML>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
                var COOKIE_NAME =  'username';
                if($.cookie(COOKIE_NAME)){
                  $("#username").val($cookie(COOKIE_NAME));
                }
                $("#check").click(function(){
                   if(this.checked){
                      $.cookie(COOKIE_NAME,$("#username").val(),{path:'/',expires:10});
                   }else{
                      $.cookie(COOKIE_NAME,null,{path:''});
                   }
                })
                
            });

</script>
</head>
<body>
   用户名:<input type="text" name="username" id="username"/> <br/>
   <input type="checkbox" name="check" id="check"/>记住用户名
</body>
</html>

相关文章

  • jquery.cookie

    jquery.cookie的github地址

  • jquery.cookie

    Cookies 定义:让网站服务器把少量数据储存到客户端的硬盘或内存,从客户端的硬盘读取数据的一种技术; 下载与引...

  • 本地存储和以及cookie

    一 . jquery.cookie插件操作的cookie: 1.cookie 网站,为了实现某些功能,把一些数据存...

  • jquery.cookie()方法基本使用

    jquery.cookie()是一个轻量级的jquery插件,最近用到这个写一个页面,所以特地写下来帮助记忆一下。...

  • js获取cookie

    之前用jQuery.cookie来获取cookie,虽然简单,但是项目上又多引用了一个插件,总觉得不太好,下面是我...

  • jquery.cookie() 方法的使用(读取、写入、删除)

    一个轻量级的cookie 插件,可以读取、写入、删除 cookie。 使用方法 1.新添加一个会话 cookie:...

网友评论

      本文标题:jquery.cookie

      本文链接:https://www.haomeiwen.com/subject/vomauftx.html