标签:style blog http color io os ar div sp
iOS的Safari在无痕模式下,sessionStorage操作产生异常,报错QUOTA_EXCEEDED_ERR: DOM Exception 22。
function isLocalStorageNameSupported() { var testKey = ‘test‘, storage = window.sessionStorage; try { storage.setItem(testKey, ‘1‘); storage.removeItem(testKey); return true; } catch (error) { return false; } }
try {} catch(error) {alert(error)}
^_^QUOTA_EXCEEDED_ERR: DOM Exception 22
标签:style blog http color io os ar div sp
原文地址:http://www.cnblogs.com/jzm17173/p/3968226.html