无法使用 jQuery Cookie 设置 cookie
Cannot set cookie with jQuery Cookie
我正在使用 jQuery Cookie 1.4.1。这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<a href="#" onclick="test()">test</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="jquery.cookie.js"></script>
<script>
function test() {
$.cookie('name', 'value');
console.log($.cookie('name'));
}
</script>
</body>
</html>
控制台显示"undefined"
谁能帮帮我?
我正在本地主机上开发。 Chrome 似乎忽略了本地 jQuery cookies:
Why does Chrome ignore local jQuery cookies?
我正在使用 jQuery Cookie 1.4.1。这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<a href="#" onclick="test()">test</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="jquery.cookie.js"></script>
<script>
function test() {
$.cookie('name', 'value');
console.log($.cookie('name'));
}
</script>
</body>
</html>
控制台显示"undefined"
谁能帮帮我?
我正在本地主机上开发。 Chrome 似乎忽略了本地 jQuery cookies:
Why does Chrome ignore local jQuery cookies?