我正在尝试使用 jQuery 设置 cookie,但它根本没有显示 cookie。有人可以解释一下我在哪里做错了吗?http://jsfiddle.net/RVFX4/1/
我在 index.html 中有这个设置:
$(document).ready(function() {
$.cookie("test", 1, {
expires : 10,
path : '/',
domain : 'jquery.com',
secure : true
});
});
我应该得到一个名为 test 的 cookie,其值为 1 对吗?