當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Location search屬性用法及代碼示例


位置搜索屬性返回/設置與 URL 的查詢參數相對應的字符串。

用法

以下是語法 -

  • 的返回值search 屬性
location.search
  • 協議屬性集的值
location.search = searchString

示例

讓我們看一個例子Location search屬性 -

<!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 search value’按鈕 -

點擊後‘Get search value’按鈕 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Location search Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。