Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

วิธีตรวจสอบการรองรับเว็บเบราว์เซอร์ใน HTML5


คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อตรวจหาคุณลักษณะของผู้ปฏิบัติงานบนเว็บที่มีอยู่ในเว็บเบราว์เซอร์:

<!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>

ผลลัพธ์ดังต่อไปนี้:

วิธีตรวจสอบการรองรับเว็บเบราว์เซอร์ใน HTML5