Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM ตำแหน่งโฮสต์ คุณสมบัติ


คุณสมบัติ Location host ส่งกลับ/ตั้งค่าชื่อโฮสต์และพอร์ตโฮสต์ (หากระบุ) พอร์ตอาจไม่แสดงหากไม่ได้ระบุไว้อย่างชัดเจน

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

  • คืนค่าของ โฮสต์ ทรัพย์สิน
location.host
  • คุณค่าของ โฮสต์ ชุดคุณสมบัติ
location.host = hostname:host

ตัวอย่าง

ให้เราดูตัวอย่างสำหรับโฮสต์ตำแหน่ง ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>Location host</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-host</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="27" id="urlSelect" value="https://www.example.com:2544">
<input type="button" onclick="getHostPort()" value="Get Port">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   function getHostPort() {
      if(location.host.includes(':') === false)
         divDisplay.textContent = 'No port present, as host: '+location.host;
      else
         divDisplay.textContent = 'Port: '+location.host.split(":")[1]+', as host: '+location.host;
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ก่อนคลิก ‘รับพอร์ต’ ปุ่ม −

HTML DOM ตำแหน่งโฮสต์ คุณสมบัติ

หลังจากคลิก 'รับพอร์ต' ปุ่ม −

HTML DOM ตำแหน่งโฮสต์ คุณสมบัติ