js获取内联及链接样式的代码。
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 ) // 获取内联和链接 // 原理分析:计算之后的样式会驻留在浏览器的计算样式里,因此就可以获取到了。 //by http://www.jb200.com