1
我正在使用jQuery的cookie插件。我設置了Cookie,如$.cookie('key','value')
。在firebug中,我可以看到cookie已設置,但console.log($.cookie('key'))
返回null
。jquery餅乾問題
我在做什麼錯?
我正在使用jQuery的cookie插件。我設置了Cookie,如$.cookie('key','value')
。在firebug中,我可以看到cookie已設置,但console.log($.cookie('key'))
返回null
。jquery餅乾問題
我在做什麼錯?
嘗試增加更多的參數,僅用於測試:
$.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com' });
爲了驗證cookie的值,你也可以使用Web開發擴展,他們有觀點餅乾的選項。
$ .cookie('key','value',{path:'/'});訣竅。我注意到,Cookie僅爲當前頁面設置 – adaxa 2010-10-15 07:56:12
我剛剛試過$ .cookie('name','User');的console.log($餅乾( '名'));在螢火蟲控制檯。他們工作正常。只要檢查你的鑰匙的外殼。 – 2010-10-15 07:27:50