请深入了解这个谜团.
我试图从div框中获取高度值
var high = document.getElementById("hintdiv").style.height;
alert(high);
Run Code Online (Sandbox Code Playgroud)
如果属性包含在div标记中,我可以很好地获得此值,但如果在css部分中定义了属性,则返回空值.
这很好,它显示100px值.可以访问该值.
<div id="hintdiv" style="height:100px; display: none;">
.
.
var high = document.getElementById("hintdiv").style.height;
alert(high);
Run Code Online (Sandbox Code Playgroud)
这不好,它显示一个空的警报屏幕.该值几乎为0.
#hintdiv
{
height:100px
display: none;
}
<div id="hintdiv">
.
.
var high = document.getElementById("hintdiv").style.height;
alert(high);
Run Code Online (Sandbox Code Playgroud)
但是访问/更改"display:none"属性没有问题,无论它是在标签中还是在css部分中.div框可以通过两种属性定义方法(在标记内或在css部分中)正确显示.
我也尝试通过其他变体访问该值,但没有运气
document.getElementById("hintdiv").style.height.value ----> undefined
document.getElementById("hintdiv").height ---->undefined
document.getElementById("hintdiv").height.value ----> error, no execution
Run Code Online (Sandbox Code Playgroud)
有解决方案吗
TIA.
javascript ×1