Javascript拖拽系列文章2之offsetLeft、offsetTop、offsetWidth、offsetHeight屬性第1/2頁

來源:互聯網
上載者:User

在閱讀本文之前,請先看一看第一篇文章Javascript拖拽系列文章1之offsetParent屬性,因為循序漸進是一個很好的習慣,值得提倡。
好了,看看我們今天的內容吧。
首先讓我們先看一看element.offsetLeft屬性。
支援的瀏覽器:Internet Explorer 4.0+,Mozilla 1.0+,Netscape 6.0+,Opera 7.0+,Safari 1.0+
定義:返回一個像素數值,它表示當前元素的左邊緣到它的offsetParent屬性返回的對象左邊緣的位移量。
句法:
leftDis = element.offsetLeft
offsetLeft屬性在Internet Explorer中的實現存在Bug,無論當前元素的offsetParent屬性取值如何,它總是以Body元素為參照物來計算offsetLeft。幸運的是,這個Bug在Intern Explorer 8 Beta 1中已經修複。仍然需要注意,IE會從Body元素的Left-Border為標準開始計算OffsetLeft,而其他的瀏覽器將從Left-Margin開始計算。
測試代碼1:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
body{
border:1px solid red;
margin-left:0px;
}
#parent{
position:relative;
left:25px;
top:0px;
border:1px solid black;

}
</style>
<script type="text/javascript" language="JavaScript">
function offset_init(){
var pElement = document.getElementById("sonObj");
parentObj = pElement.offsetParent;
var ioffsetLeft=pElement.offsetLeft;

alert(parentObj.tagName);
alert(ioffsetLeft);
}
</script>
</head>
<body onload="offset_init()">
<div id="parent">XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
<span id="sonObj">測試OffsetParent屬性</span>
</div>
</body>
</html>

在IE中,運行這段代碼後,會依次彈出兩個視窗,分別顯示“DIV”、“437”,分別表示offsetParent和offsetLeft。在中,紅色邊框代表Body元素,黑色邊框代表Div元素。從而證明即使在IE中,offsetParent不是Body元素,offsetLeft的計算也以Body元素為標準。

圖一:在IE7中的結果

在IE 8 Beta 1中這Bug已經被修複,將分別返回“DIV”,“411”。已經和其他瀏覽器一樣符合了標準。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.