Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 jquery.cookie 插件来保存我的应用程序数据,如下所示:
$.cookie('cookieTest', 'appDataHere', { expires: 7, path: '/' }); alert( $.cookie("cookieTest") );
但由于某种原因,上述在 Safari 和 IE 中输出“未定义”。
有任何想法吗?
在 FF 和 Chrome 中运行良好..