jquery cookie使用問題

來源:互聯網
上載者:User

1,添加cookie.js

2,設定cookie


$.cookie('username', '', { expires: -1 }); // 刪除 cookie
$.cookie('username', username, { path: '/' });
alert($.cookie('username'));

 

這裡盡量不要用var COOKIE_NAME = "username";這種形式設定cookie的名字,如果這樣本頁的話是可以取到COOKIE_NAME 的

但是如果cookie要在別的頁面使用的話就就有點問題,可能會取不到COOKIE_NAME 這個cookie,

在別的頁面取cookie:

if ($.cookie("username")) {
$(".STYLE6").html("歡迎您:" + $.cookie("username"));

 

 

最要注意的就是盡量不要用var COOKIE_NAME = "username"這種形式設定cookie的名字,本頁面可以,別的頁面

可能就取不到cookie的名字了。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.