我需要编写和读取一个 cookie,我想使用jquery-cookie插件。
但是,我无法设法存储 cookie 并将其读回。
这是一个 MWE
<html>
<head>
<title>Test</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery-cookie/jquery.cookie.js"></script>
<script type="text/javascript">
$(function() {
$.cookie('aCookie','aValue');
console.log($.cookie('aCookie'));
});
</script>
</head>
<body>
</body>
</html>
我希望看到aValue
在控制台中打印出来,而它打印出来null
,即未找到 cookie。
我觉得我在这里缺少一些明显的东西。