Prototype-element-getoffsetparent

提供:Dev Guides
移動先:案内検索

プロトタイプ-getOffsetParent()メソッド

このメソッドは、要素の最も近い位置にある祖先を返します。 何も見つからない場合、body要素が返されます。

構文

element.getOffsetParent();

戻り値

HTML要素を返します。

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>

      <script>
         function showResult() {
            var node = $('father').getOffsetParent();
            alert("Offset Parent is : " + node.nodeName + ':' + node.innerHTML );
         }
      </script>
   </head>

   <body>
      <p>Click the button to see the result.</p>

      <div id = "grandfather">This is grand father
         <div id = "father"> This is father.
            <div id = "kid">This is kid</div>
         </div>
      </div>
      <br/>

      <input type = "button" value = "showResult" onclick = "showResult();"/>
   </body>
</html>

出力