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

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


คุณสมบัติ Location hostname ส่งกลับ/ตั้งค่าชื่อโฮสต์สำหรับเส้นทาง URL

ไวยากรณ์

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

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

ตัวอย่าง

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

<!DOCTYPE html>
<html>
<head>
<title>Location hostname</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-hostname</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="27" id="urlSelect" value="https://www.example.com:2544">
<input type="button" onclick="getHostname()" value="Get Hostname">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   function getHostname(){
      divDisplay.textContent = 'Hostname: '+location.hostname;
   }
</script>
</body>
</html>

ผลลัพธ์

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

ก่อนคลิก 'รับชื่อโฮสต์' ปุ่ม −

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

หลังจากคลิก 'รับชื่อโฮสต์' ปุ่ม −

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