首页  >  文章  >  web前端  >  元素未显示设置width/height时IE中使用currentStyle获取为auto_javascript技巧

元素未显示设置width/height时IE中使用currentStyle获取为auto_javascript技巧

WBOY
WBOY原创
2016-05-16 16:50:141208浏览

我们知道获取元素的实际宽高在IE中可以使用currentStyle属性。但如果没有显示的去设置元素的宽高,那么使用该属性将获取不到,获取的值为auto。如下

复制代码 代码如下:

abcd

<script> <BR>var div = document.getElementsByTagName('div')[0]; <BR>alert(div.currentStyle.width); <BR>alert(div.currentStyle.height); <BR></script>

IE6/7/8/9中输出的都是auto。如果显示的设置了宽高,那么输出的就是实际宽高。如下

1,通过内联style属性设置
复制代码 代码如下:

abcd

<script> <BR>var div = document.getElementsByTagName('div')[0]; <BR>alert(div.currentStyle.width); <BR>alert(div.currentStyle.height); <BR></script>

2,通过页面嵌入style标签设置
复制代码 代码如下:


abcd

<script> <BR>var div = document.getElementsByTagName('div')[0]; <BR>alert(div.currentStyle.width); <BR>alert(div.currentStyle.height); <BR></script>

都将输出:100px,50px
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn