如何檢測網站是否設置了一般cookie而不檢查大量單個cookie。檢查Cookie是否一般存在,而不是特定的Cookie
我看着這個相似的問題:Create a cookie if (and only if) it doesn't already exist。但提供的解決方案檢查是否存在特定的Cookie,而不僅僅是一般的Cookie。
我曾嘗試:
if($.cookie) {
//code
}
如何檢測網站是否設置了一般cookie而不檢查大量單個cookie。檢查Cookie是否一般存在,而不是特定的Cookie
我看着這個相似的問題:Create a cookie if (and only if) it doesn't already exist。但提供的解決方案檢查是否存在特定的Cookie,而不僅僅是一般的Cookie。
我曾嘗試:
if($.cookie) {
//code
}
的jQuery實在是沒有必要的檢查,如果當前域名已經設置在用戶瀏覽器的cookie,只需使用原始JS:
if(document.cookie.length > 0) {
// do stuff ...
}
最後使用了「<1」。謝謝 – RSM
你不「噸需要使用這個$ .cookie插件:
if (document.cookie) {
// at least one cookie has been set...
}
胡亂猜測,但你嘗試過'$ .cookie()。length'? – Johan