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 で正常に動作します。