|
1. 內聯樣式即元素style屬性里面設置的,級別最高
2. 頁面樣式表定義即頁面<style></style>里面定義的,級別次之
3.外部鏈接樣式表文件
JavaScript獲取和設置文檔元素的css屬性:
1.獲取元素Style屬性里面設置的樣式屬性,
document.getElementById(id).style.height;
有,則返回屬性值;沒有則返回空
IE和火狐皆然,只是有的屬性值返回可能不一樣,比如像顏色火狐返回rgb,而IE是返回十六進制數字
測試代碼:
<script type="text/Javascript">
function getCss(){
alert(document.getElementById("aaa").style.height);
alert(document.getElementById("aaa").style.backgroundColor);
alert(document.getElementById("aaa").style.width);
document.getElementById("aaa").style.backgroundColor = ‘#dbdbdb';
//alert(myWidth);
}
</script>
<div id="aaa" class="bbb" style="height:20px; background-color:#FF0000;">
asdfasdfas
</div>
<input type="button" value="點擊" onclick="getCss();" />
2.有時候我們的樣式可能有多個地方設置了,我們也不知道它到底是外部樣式表屬性起作品,還是在內聯樣式里面起作用,所以我們就需要獲取當前頁面渲染的屬性值。這個在IE和FF里面有些不同:
示例代碼片斷:
IE:document.getElementById('aaa').currentStyle.height
FF標準:document.defaultView.getComputedStyle(aaa,null).getPropertyValue('height')
這兩個屬性是只讀的,若要改變元素樣式還得使用style,它直接寫在元素style屬性里面級別最高起作用
3.寫一個兼容IE和FF的函數來調用
復制代碼 代碼如下:
function getRealStyle(id,styleName) {
var element = document.getElementById(id);
var realStyle = null;
if (element.currentStyle)
realStyle = element.currentStyle[styleName];
else if (window.getComputedStyle)
realStyle = window.getComputedStyle(element,null)[styleName];
return realStyle;
}
調用:cur_height = parseInt(getRealStyle(CON_ID,'height'));
P.S:返回值通常會帶有單位,需要使用parseInt函數提取數字,以方便后面的操作
JavaScript技術:javaScript 讀取和設置文檔元素的樣式屬性,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。