复制代码代码如下: if(typeof(Storage)!=="undefined"){ // Yes! localStorage and sessionStorage support! // Some code..... } else { // Sorry! No web storage support.. }
第二种方式就是分别检查各自的对象,例如检查localStorage是否支持:
复制代码代码如下: if (typeof(localStorage) == 'undefined' ) { alert('Your browser does not support HTML5 localStorage. Try upgrading.'); } else { // Yes! localStorage and sessionStorage support! // Some code..... } 或者: if('localStorage' in window && window['localStorage'] !== null){ // Yes! localStorage and sessionStorage support! // Some code..... } else { alert('Your browser does not support HTML5 localStorage. Try upgrading.'); } 或者 if (!!localStorage) { // Yes! localStorage and sessionStorage support! // Some code..... } else { alert('Your browser does not support HTML5 localStorage. Try upgrading.'); }
很显然第一个方式最直接,也最简单。 Web Storage的使用 Web Storage中存储的是键值对,而且浏览器会以字符串方式存储。记住在必要的时候将他们转为其他格式。 sessionStorage与localStorage除了用途不同外,成员列表是一样的:
复制代码代码如下: try { localStorage.setItem(itemId, values.join(';')); } catch (e) { if (e == QUOTA_EXCEEDED_ERR) { alert('Quota exceeded!'); } }
Web Storage的方法非常简单,下面的示例是统计button点击的次数的:
复制代码代码如下: <!DOCTYPE html> <html> <head> <script> function clickCounter() { if(typeof(Storage)!=="undefined") { if (localStorage.clickcount) { localStorage.clickcount=Number(localStorage.clickcount)+1; } else { localStorage.clickcount=1; } document.getElementById("result").innerHTML="You have clicked the button " + localStorage.clickcount + " time(s)."; } else { document.getElementById("result").innerHTML="Sorry, your browser does not support web storage..."; } } </script> </head> <body> <p><button onclick="clickCounter()" type="button">Click me!</button></p> <div id="result"></div> <p>Click the button to see the counter increase.</p> <p>Close the browser tab (or window), and try again, and the counter will continue to count (is not reset).</p> </body> </html>