1. 程式人生 > >jquery中cookie的簡單設定、獲取和刪除操作

jquery中cookie的簡單設定、獲取和刪除操作

在jquery內設定cookie的具體操作如下:

在進行cookie操作前必須要引入兩個檔案。

一是:<script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>

二是:<script src="//cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>    //cookie操作封裝類

1、cookie設定。

      $.cookie('token', 'the_value');

2、cookie獲取。

      $.cookie().token;

3、cookie刪除。

     $.cookie('toke', null);