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; } }