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에서 웹 브라우저 지원을 확인하는 방법