獲取CSS屬性

2021-07-31 03:21:34 字數 453 閱讀 9798

1.通過style獲取

var otxt=document.getelementbyid('txt');

alert(otxt.style.width);

該樣式是行間樣式,是在html標籤內部設定的樣式;

2.通過jquery中的css方法來設定和獲取屬性

var wd=$('.mobile').css('width');

var hg=$('.mobile').css('height');

$("p").css();

3.注意區別jquery中的attr方法獲取的是標籤的屬性

獲取匹配的元素集合中的第乙個元素的屬性的值 或 設定每乙個匹配元素的乙個或多個屬性。

$("img").attr();

獲取css樣式屬性

為了得到css的屬性,通過style.屬性名稱,只能得到在style中設定的屬性值,為了得到外聯的css以及寫在外部的css樣式,可以用下面的 var b document.getelementbyid b if b.currentstyle k b.currentstyle width else ...

JS獲取CSS屬性值

obj.style方法,這個方法只能js只能獲取寫在html標籤中的寫在style屬性中的值 style 看一下 code x m,m0 u7 l i8 y0 j 3 n l n f y r c.q i z o 5 q u g p8 i js獲取css屬性值 u8 w o5 t z a c3 k i...

獲取元素CSS屬性值

domobj.style attr 只能獲取行內樣式,在現代瀏覽器中,有domobj.getcomputedstyle 方法可以獲得瀏覽器渲染計算後的屬性值。以下就不同瀏覽器中進行獲取 css 樣式進行封裝。需要規避復合值的問題 margin padding 把帶獲取到帶單位的把單位去掉 px em...