gpt4 book ai didi

javascript - border-left-width 的 getComputedStyle 或 currentStyle

转载 作者:行者123 更新时间:2023-11-29 22:23:14 25 4
gpt4 key购买 nike

我的 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

fiddle :http://jsfiddle.net/4ABhZ/1

我怎样才能得到 border-left-width属性(property)? (以我为例,它不起作用(在 Firefox 上))

最佳答案

检查您的 border-left-style 属性。它设置为 none(默认值)。将其设置为类似 solid 的内容,您就可以开始了:http://jsfiddle.net/Paulpro/4ABhZ/4/

关于javascript - border-left-width 的 getComputedStyle 或 currentStyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11018828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com