首頁 >web前端 >js教程 >如何使用 js-cookie 設定、取消設定和管理 Cookie?

如何使用 js-cookie 設定、取消設定和管理 Cookie?

Linda Hamilton
Linda Hamilton原創
2024-12-18 16:02:11498瀏覽

How Can I Set, Unset, and Manage Cookies with js-cookie?

使用 jQuery 設定和取消設定 Cookie

要使用 jQuery 操作 Cookie,建議的方法不再使用 jQuery Cookie 外掛。相反,建議使用獨立的 js-cookie 函式庫,可從 https://github.com/js-cookie/js-cookie 取得。

設定Cookie

使用js-cookie 設定cookie:

Cookies.set('name', 'value');

例如,設定一個名為「test」的cookie 並指定一個值共1 個:

Cookies.set('test', 1);

取消設定Cookie

要使用js-cookie 刪除Cookie:

Cookies.remove('name');

使用前面的範例,刪除「測試」 cookie:

Cookies.remove('test');

設定自訂選項

要設定cookie的自訂選項,例如過期時間或網域,請傳遞一個物件作為第三個參數:

Cookies.set('test', 1, {
  expires: 10, // Expires in 10 days
  path: '/', // The path attribute of the cookie
  domain: 'jquery.com', // The domain attribute of the cookie
  secure: true // The secure attribute of the cookie
});

閱讀Cookie值

擷取cookie 的值:

var cookieValue = Cookies.get('name');

例如,擷取「測試」cookie 的值:

var testValue = Cookies.get('test');

以上是如何使用 js-cookie 設定、取消設定和管理 Cookie?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn