查看效果: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

相关文章:

  • 2021-09-27
  • 2022-03-05
  • 2021-09-07
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2021-08-05
猜你喜欢
  • 2021-12-15
  • 2021-08-20
  • 2022-01-31
  • 2021-07-23
  • 2021-05-05
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案