Please note, this is a STATIC archive of website developer.mozilla.org from November 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

element.offsetTop

概要

offsetTop は、その要素の offsetParent ノードの上端からの相対的な位置を返します。

構文

topPos = element.offsetTop;

引数

  • topPos : その要素の offsetParent ノードの上端からのピクセル数

var d = document.getElementById("div1");
var topPos = d.offsetTop;
 
if (topPos > 10) {
  // 要素が offsetParent から 11px 以上離れている場合の処理をここに記述
}

仕様書

DOM Level 0。どの標準にも属しません。

offsetLeftoffsetTopoffsetParentCSSOM View Module で提案されています。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: fscholz, khalid32, ethertank
 最終更新者: khalid32,