Computer >> Máy Tính >  >> Lập trình >> HTML

Chủ sở hữu HTML DOM Thuộc tính Tài liệu

Thuộc tính HTML DOM ownerDocument trả về đối tượng Tài liệu đại diện cho tài liệu chủ sở hữu của một nút.

Cú pháp

Sau đây là cú pháp -

node.ownerDocument

Ví dụ

Hãy để chúng tôi xem một ví dụ về thuộc tính ownerDocument -

<!DOCTYPE html>
<html>
<head>
<style>
   html{
      height:100%;
   }
   body{
      text-align:center;
      color:#fff;
      background: #ff7f5094;
      height:100%;
   }
   p{
      font-weight:700;
      font-size:1.2rem;
   }
   .btn{
      background:#0197F6;
      border:none;
      height:2rem;
      border-radius:2px;
      width:35%;
      margin:2rem auto;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
   .show{
      font-size:1.5rem;
   }
</style>
</head>
<body>
<h1>DOM ownerDocument Property Demo</h1>
<p>Who is the owner of this blue button?</p>
<button onclick="showOwner()" class="btn">Get Owner</button>
<div class="show"></div>
<script>
   function showOwner() {
      document.querySelector(".show").innerHTML=document.querySelector(".btn").ownerDocument.nodeName
   }
</script>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Chủ sở hữu HTML DOM Thuộc tính Tài liệu

Nhấp vào “ Nhận chủ sở hữu ”Để hiểu cách hoạt động của thuộc tính OwnerDocument.

Chủ sở hữu HTML DOM Thuộc tính Tài liệu