元素未显示设置width/height时IE中使用currentStyle获取为auto
更新时间:2014年05月04日 09:35:19 作者:
元素未显示设置width/height时IE中无法使用currentStyle获取,默认获取值为auto,需要的朋友可以参考下
我们知道获取元素的实际宽高在IE中可以使用currentStyle属性。但如果没有显示的去设置元素的宽高,那么使用该属性将获取不到,获取的值为auto。如下
<div>abcd</div>
<script>
var div = document.getElementsByTagName('div')[0];
alert(div.currentStyle.width);
alert(div.currentStyle.height);
</script>
IE6/7/8/9中输出的都是auto。如果显示的设置了宽高,那么输出的就是实际宽高。如下
1,通过内联style属性设置
<div style="width:100px;height:50px;">abcd</div>
<script>
var div = document.getElementsByTagName('div')[0];
alert(div.currentStyle.width);
alert(div.currentStyle.height);
</script>
2,通过页面嵌入style标签设置
<style>
div {
width: 100px;
height: 50px;
}
</style>
<div>abcd</div>
<script>
var div = document.getElementsByTagName('div')[0];
alert(div.currentStyle.width);
alert(div.currentStyle.height);
</script>
都将输出:100px,50px
复制代码 代码如下:
<div>abcd</div>
<script>
var div = document.getElementsByTagName('div')[0];
alert(div.currentStyle.width);
alert(div.currentStyle.height);
</script>
IE6/7/8/9中输出的都是auto。如果显示的设置了宽高,那么输出的就是实际宽高。如下
1,通过内联style属性设置
复制代码 代码如下:
<div style="width:100px;height:50px;">abcd</div>
<script>
var div = document.getElementsByTagName('div')[0];
alert(div.currentStyle.width);
alert(div.currentStyle.height);
</script>
2,通过页面嵌入style标签设置
复制代码 代码如下:
<style>
div {
width: 100px;
height: 50px;
}
</style>
<div>abcd</div>
<script>
var div = document.getElementsByTagName('div')[0];
alert(div.currentStyle.width);
alert(div.currentStyle.height);
</script>
都将输出:100px,50px
您可能感兴趣的文章:
- 通用于ie和firefox的函数 GetCurrentStyle (obj, prop)
- (currentStyle)javascript为何有时用style得不到已设定的CSS的属性
- javascript 读取内联之外的样式(style、currentStyle、getComputedStyle区别介绍)
- style、 currentStyle、 runtimeStyle区别分析
- 获取css样式表内样式的js函数currentStyle(IE),defaultView(FF)
- getComputedStyle与currentStyle获取样式(style/class)
- JS获取CSS样式(style/getComputedStyle/currentStyle)
- 前端学习笔记style,currentStyle,getComputedStyle的用法与区别
相关文章
JS生态系统加速探索Draft-js emoji插件功能及使用探索
这篇文章主要介绍了JS生态系统加速探索Draft-js emoji插件功能使用探究,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2024-01-01
最新评论