使用纯 JavaScript,我试图在遍历集合时获取给定 childNode 的偏移量。
我有一个包含一系列文本子节点的容器:
var theChildren = document.getElementById( "parentContainer" ).childNodes,
theChildrenLen = theChildren.length;
for( var i=0; i<theChildrenLen; i++ ) {
console.log( theChildren[i].offsetLeft );
}
我对此和任何其他偏移量参考都未定义。
有人提出这个问题并找到了一种方法吗?