如何使用JavaScript返回网页的协议(http或https)?


本文向大家介绍如何使用JavaScript返回网页的协议(http或https)?,包括了如何使用JavaScript返回网页的协议(http或https)?的使用技巧和注意事项,需要的朋友参考一下

使用window.location对象返回协议。该窗口ocation.protoco L将返回网络协议,即无论是HTTP HTTPS -

示例

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