爱程序网

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>

网页特效:http://www.cnblogs.com/roucheng/p/texiao.html

关于爱程序网 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助