- currentStyle :只兼容IE浏览器
- getComputedStyle :获取计算后的样式,不兼容IE6.IE7.IE8
如何获取非行间样式,同时兼容所有浏览器呢?
window.onload=function(){ var oDiv1=document.getElementBy("div1"); if(oDiv.currentStyle){ //如果浏览器支持currentStyle oDiv.currentStyle.width; }else{ //如果浏览器不支持currentStyle oDiv.getComputedStyle(oDiv,false).width; //getComputerStyle第二个参数可以是任意值 } }
时间: 2024-12-16 06:24:24