最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

元素未顯示設(shè)置width/height時(shí)IE中使用currentStyle獲取為auto

 更新時(shí)間:2014年05月04日 09:35:19   作者:  
元素未顯示設(shè)置width/height時(shí)IE中無(wú)法使用currentStyle獲取,默認(rèn)獲取值為auto,需要的朋友可以參考下
我們知道獲取元素的實(shí)際寬高在IE中可以使用currentStyle屬性。但如果沒(méi)有顯示的去設(shè)置元素的寬高,那么使用該屬性將獲取不到,獲取的值為auto。如下
復(fù)制代碼 代碼如下:

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

IE6/7/8/9中輸出的都是auto。如果顯示的設(shè)置了寬高,那么輸出的就是實(shí)際寬高。如下

1,通過(guò)內(nèi)聯(lián)style屬性設(shè)置
復(fù)制代碼 代碼如下:

<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,通過(guò)頁(yè)面嵌入style標(biāo)簽設(shè)置
復(fù)制代碼 代碼如下:

<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

相關(guān)文章

最新評(píng)論

黎川县| 布拖县| 平度市| 邢台市| 高淳县| 喀什市| 昭觉县| 永善县| 安顺市| 崇阳县| 宁武县| 会东县| 连南| 葵青区| 尼玛县| 灌云县| 莎车县| 威海市| 卢氏县| 罗平县| 海城市| 九江市| 宜昌市| 临颍县| 常德市| 大邑县| 小金县| 内乡县| 穆棱市| 阿尔山市| 广东省| 塔河县| 昆山市| 永和县| 康乐县| 兰州市| 洞头县| 隆化县| 衡阳县| 抚州市| 正蓝旗|