function getCookieValue(cname) {
// cname is the cookie name (foo) which value you are after
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
4条答案
按热度按时间waxmsbnn1#
只有
var foo = $.cookie("foo")
不需要
.val()
调用,因为您没有访问DOM元素的 value。kx7yvsdv2#
这对我很有效:
字符串
uajslkp63#
要获取cookie的值,您只需调用它的引用。举例来说:
字符串
将发出警报:
型
mnemlml84#
通过这种方式我们可以访问
console.log($.cookie());
//它将以对象的形式给出所有cookiealert($.cookie('foo'));
//它将给予cookie foo值即500