Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 웹 페이지의 프로토콜(http 또는 https)을 반환하는 방법은 무엇입니까?


window.location 개체를 사용하여 프로토콜을 반환합니다. . 위치.프로토코 l 웹 프로토콜, 즉 http인지 여부를 반환합니다. 또는 https -

예시

<!DOCTYPE html>
<html>
   <body>
      <script>
         document.write("https or https: <br>The protocol is:"+window.location.protocol);
      </script>
   </body>
</html>