使用 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中文網其他相關文章!