1 回答
TA贡献1155条经验 获得超0个赞
var scrollRowThead = document.getElementById("...");
scrollRowThead.style.left = scrollRowThead.parentElement.parentElement.parentElement.parentElement.scrollLeft;
把以下代码放到一个html文件中,然后用浏览器打开看看效果。
<html>
<style>
.scrollRowThead {
position: relative;
}
</style>
<script language=javascript>
function init() {
var reletiveDiv = document.getElementById("myId");
reletiveDiv.style.left = reletiveDiv.parentElement.parentElement.style.height;
// 设置myId这块div的left属性,让他等于他父亲节点的父亲节点(也就是背景是红色的那个div)的高度
// 这里就是为了说明使用了高度属性,你可以取得他的其他属性,例如scrollLeft
}
</script>
<body onload="init()">
<div style="width:600px;height:100px;background-color:red">
<div>
<div id="myId" class="scrollRowThead" >
test
</div>
</div>
</div>
</body>
</html>
添加回答
举报