我正在尝试调试我的一些代码。我需要知道设置为cookie的值。我已经看过如何做到这一点的示例,但它们似乎都没有用。我尝试过以下方法:
$.cookie("highScore", '666', { expires : 100 });
alert($.cookie("highScore"));
以及
$.cookie("highScore", '666', { expires : 100 });
var highScore = $.cookie("highScore");
alert(highScore);
在两种情况下,警报返回结果为object html paragraph element.
答案 0 :(得分:0)
我没有看到你在任何地方提到它,但是你知道$.cookie()
不是jQuery原生的吗?
看起来你正在尝试使用Klaus Hartl的插件jquery.cookie。
除此之外,一切看起来都是正确的。
$(document).ready(function() {
$.cookie("highScore", '666', { expires : 100 });
alert($.cookie("highScore"));
});