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

ชื่อหน้าต่าง HTML คุณสมบัติ


คุณสมบัติชื่อหน้าต่าง HTML ส่งกลับและแก้ไขชื่อของหน้าต่าง

ไวยากรณ์

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

1. ชื่อผู้ส่งคืน

window.name

2. การเพิ่มชื่อ

window.name=”text”

ให้เราดูตัวอย่างคุณสมบัติชื่อหน้าต่าง HTML −

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
   .show {
      font-size: 1.2rem;
   }
</style>
<body>
<h1>HTML Window name Property Demo</h1>
<button onclick="display()" class="btn">Show window name</button>
<div class="show"></div>
<script>
   function display() {
      document.querySelector('.show').innerHTML = 'The current window name is: ' + window.name;
   }
</script>
</body>
</html>

ผลลัพธ์

ชื่อหน้าต่าง HTML คุณสมบัติ

คลิกที่ปุ่ม "แสดงชื่อหน้าต่าง" เพื่อแสดงชื่อของหน้าต่างปัจจุบัน -

ชื่อหน้าต่าง HTML คุณสมบัติ