HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLDOMownerDocumentプロパティ


HTML DOMのownerDocumentプロパティは、ノードの所有者ドキュメントを表すDocumentオブジェクトを返します。

構文

以下は構文です-

node.ownerDocument

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>

出力

これにより、次の出力が生成されます-

HTMLDOMownerDocumentプロパティ

所有者を取得」をクリックします 」ボタンをクリックして、ownerDocumentプロパティがどのように機能するかを理解します。

HTMLDOMownerDocumentプロパティ


  1. HTMLDOMoffsetParentプロパティ

    HTML DOM offsetParentプロパティは、子オフセットが定義されている参照された親要素を返します。 以下は構文です- 参照されたオフセット親要素を返す HTMLelement.offsetParent HTML DOM offsetParentの例を見てみましょう。 プロパティ- 例 <!DOCTYPE html> <html> <head> <title>HTML DOM offsetParent</title> <style type="text/css">   &n

  2. HTMLDOMタイトルプロパティ

    HTML DOM titleプロパティは、HTML要素のtitle属性の値に対応する文字列を返す/設定します。 HTML要素にカーソルを合わせると、タイトルの値が表示されます。 以下は構文です- 文字列値を返す ElementOfHTMLObject.title タイトルを設定する 文字列値に ElementOfHTMLObject.title = string 例 HTMLDOMタイトルの例を見てみましょう プロパティ- <!DOCTYPE html> <html> <head> <title>HTML DOM title</ti