プレーンな JavaScript を使用して、コレクションをループしながら、特定の childNode のオフセットを取得しようとしています。
一連のテキスト childNodes を持つコンテナーがあります。
var theChildren = document.getElementById( "parentContainer" ).childNodes,
theChildrenLen = theChildren.length;
for( var i=0; i<theChildrenLen; i++ ) {
console.log( theChildren[i].offsetLeft );
}
これと他のオフセット参照については未定義になります。
誰かがこれを思いつき、アプローチを見つけましたか?