如何在 HTML5 中检查 Web 浏览器支持


可以尝试运行以下代码来检测 Web 浏览器中的 Web 工作者功能

<!DOCTYPE HTML>
<html>
   <head>
      <title>Big for loop</title>
      <script src = "/js/modernizr-1.5.min.js"></script>
      <script>
         function myFunction(){
            if (Modernizr.webworkers) {
               alert("Congratulations!! You have web workers support." );
            } else{
               alert("Sorry!! You do not have web workers support." );
            }
         }
      </script>
   </head>

   <body>
      <button onclick = "myFunction()">Click me</button>
   </body>
</html>

以下为结果

更新于: 29-Jan-2020

181 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告