JS检查是否支持Storage
Posted roucheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS检查是否支持Storage相关的知识,希望对你有一定的参考价值。
查看效果:http://hovertree.com/code/html5/q69kvsi6.htm
代码:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>JS判断浏览器Storage支持情况 - 何问起</title><base target="_blank" /> <meta charset="utf-8" /> </head> <body> <script> if(typeof(Storage)=="undefined") { document.write("何问起提醒:您的浏览器不支持Web Storage"); } else { document.write("何问起提醒:您的浏览器可以使用Web Storage"); } </script> <div><br />参考: <a href="http://hovertree.com/h/bjaf/html_5_webstorage.htm" style="color:blue">Web存储</a><br /> By hovertree.com</div> </body> </html>
以上是关于JS检查是否支持Storage的主要内容,如果未能解决你的问题,请参考以下文章