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.
localStorageを利用する JavaScript コードをいくつか書きました。Opera を除くすべてのブラウザ (つまり、FF IE、Safari、Chrome) で動作しますが、なぜですか?
どのバージョンの Opera を使用していますか? Opera はバージョン 10.5 からローカル ストレージをサポートします。この機能により、ブラウザがローカルストレージに対応しているかどうかを確認できます。
function supports_html5_storage() { try { return 'localStorage' in window && window['localStorage'] !== null; } catch (e) { return false; } }