zoukankan      html  css  js  c++  java
  • js cookie的使用

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>改写自菜鸟教程(runoob.com)</title>
    </head>
    <head>
    <script>
    function deleteCookie(cname){
      document.cookie = cname+"=; expires=Thu, 01 Jan 1970 00:00:00 GMT"; 
    }
    function setCookie(cname,cvalue,exdays){
      var d = new Date();
      d.setTime(d.getTime()+(exdays*24*60*60*1000));
      var expires = "expires="+d.toGMTString();
      document.cookie = cname+"="+cvalue+"; "+expires;
    }
    function getCookie(cname){
      console.log(document.cookie);
      var name = cname + "=";
      var ca = document.cookie.split(';');
      for(var i=0; i<ca.length; i++) {
        var c = ca[i].trim();
        if (c.indexOf(name)==0) { return c.substring(name.length,c.length); }
      }
      return "";
    }
    function checkCookie(){
      var user=getCookie("username");
      if (user!=""){
        alert("欢迎 " + user + " 再次访问");
      }
      else {
        user = prompt("请输入你的名字:","");
          if (user!="" && user!=null){
            setCookie("username",user,30/24/60/60);
          }
      }
    }
    </script>
    </head>
      
    <body onload="checkCookie()"></body>
        <button onclick="deleteCookie('username')">清楚cookie</button>
    </html>
    
  • 相关阅读:
    bzoj 4012: [HNOI2015]开店
    POJ 1054 The Troublesome Frog
    POJ 3171 Cleaning Shifts
    POJ 3411 Paid Roads
    POJ 3045 Cow Acrobats
    POJ 1742 Coins
    POJ 3181 Dollar Dayz
    POJ 3040 Allowance
    POJ 3666 Making the Grade
    洛谷 P3657 [USACO17FEB]Why Did the Cow Cross the Road II P
  • 原文地址:https://www.cnblogs.com/anxiaoyu/p/9083799.html
Copyright © 2011-2022 走看看