无意中看到offsetParent,顺便就搜了下使用方法
?
function offset_init(){function offset_init(){
?
?var pElement = document.getElementById("sonObj");
?
?parentObj = pElement.offsetParent;
?
?alert(parentObj.tagName);
}
?
</script>
function offset_init(){
?
?var pElement = document.getElementById("sonObj");
?
?parentObj = pElement.offsetParent;
?
?alert(parentObj.tagName);
}
?
</script>
</head>
<body onload="offset_init()">
<h1 id="Grandfather">
? <div id="parent">div测试代码
?? <p id="sonObj">
??? ?测试OffsetParent属性
?? </p>
? </div>
</h1>
?
?
?
?
?
?
?
?
?
?