Aucune description

cook.html 924B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <script src="./js/jquery.min.js?v=2.1.4"></script>
  7. <script src="./js/jquery.cookie.js"></script>
  8. </head>
  9. <body>
  10. <p>
  11. 信息记录:<input type="text" id="msg" value="" />
  12. <input type="text" id="msgs" value="" />
  13. <input type="button" value="记住当前信息" id="sure" />
  14. </p>
  15. <script type="text/javascript">
  16. $(function () {
  17.     if($.cookie("username"))
  18.     {
  19.   $("#msg").val($.cookie("msg"));
  20.  $("#msgs").val($.cookie("msg"));
  21.     }
  22. $("#sure").click(function () {
  23. $.cookie("msg", $("#msg").val(), {path: "/", expires: 7,secure:true});
  24. $.cookie("msg", $("#msgs").val(), {path: "/", expires: 7,secure:true});
  25. })
  26. })
  27. </script>
  28. </body>
  29. </html>