復制代碼 代碼如下:
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 )
// 這樣可以獲取到內聯和鏈接
// 因為計算之後的樣式會駐留在浏覽器的計算樣式裡面 所以就可以獲取得到