Skip to content

Instantly share code, notes, and snippets.

@xyqfer
Created October 2, 2013 08:04
Show Gist options
  • Save xyqfer/6790449 to your computer and use it in GitHub Desktop.
Save xyqfer/6790449 to your computer and use it in GitHub Desktop.
检测 storage
tests['localstorage'] = function() {
try {
localStorage.setItem(mod, mod);
localStorage.removeItem(mod);
return true;
} catch(e) {
return false;
}
};
tests['sessionstorage'] = function() {
try {
sessionStorage.setItem(mod, mod);
sessionStorage.removeItem(mod);
return true;
} catch(e) {
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment