我的 HTML:<div id="bar" ></div>
我的 CSS :
#bar
{
border-left-width:150px;
}
我的 JS:
function getStyle(el,styleProp)
{
if(el.currentStyle)var y=el.currentStyle[styleProp];
else if(window.getComputedStyle)var y=document.defaultView.getComputedStyle(el,null).getPropertyValue(styleProp);
return y;
}
alert(getStyle(document.getElementById("bar"),"border-left-width"));//Outputs 0px
小提琴:http: //jsfiddle.net/4ABhZ/1
我怎样才能得到border-left-width
财产?(以我为例,它不起作用(在Firefox上))