DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 獲取內聯和鏈接中的樣式(js代碼)
獲取內聯和鏈接中的樣式(js代碼)
編輯:關於JavaScript     
復制代碼 代碼如下:
var head = document.getElementById( "box" );
// alert( head.style.background )
// alert( head.style.cssFloat || head.style.styleFloat ) // 獲取float不一樣
// head.style.fontSize = "30px"
head.style.color = "#f00";
// (typeof head.style.cssFloat != "undefined" ) ? head.style.cssFloat = "right" : head.style.styleFloat = "right" 跨浏覽器設置float
// var style = ( window.getComputedStyle ? window.getComputedStyle( head,null ) : null ) || head.currentStyle; 跨浏覽器獲取計算之後的樣式
// alert( style.fontSize )
// 這樣可以獲取到內聯和鏈接
// 因為計算之後的樣式會駐留在浏覽器的計算樣式裡面 所以就可以獲取得到
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved