当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Location protocol属性用法及代码示例


Location 协议属性返回/设置与用于 URL 的协议相对应的字符串。协议可以设置为‘file:’、‘http:’、‘https:’等。

用法

以下是语法 -

  • 的返回值protocol属性
location.protocol
  • 价值protocol属性集
location.protocol = protocolString

示例

让我们看一个例子Location protocol属性 -

<!DOCTYPE html>
<html>
<head>
<title>Location protocol</title>
<style>
   form {
      width:70%;
      margin:0 auto;
      text-align:center;
   }
   * {
      padding:2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius:10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Location-protocol</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="30" id="urlSelect" value="https://www.example.com:2544/aboutUs/CTO.htm">
<input type="button" onclick="getprotocol()" value="Get protocol">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   function getprotocol(){
      divDisplay.textContent = 'URL protocol:'+location.protocol;
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击前‘Get protocol’按钮 -

点击后‘Get protocol’按钮 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Location protocol Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。