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

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

 更新時間:2014年05月04日 09:35:19   作者:  
元素未顯示設(shè)置width/height時IE中無法使用currentStyle獲取,默認(rèn)獲取值為auto,需要的朋友可以參考下
我們知道獲取元素的實(shí)際寬高在IE中可以使用currentStyle屬性。但如果沒有顯示的去設(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,通過內(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,通過頁面嵌入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)文章

最新評論

东兰县| 三河市| 南召县| 台湾省| 楚雄市| 兴安盟| 栖霞市| 筠连县| 西充县| 靖宇县| 鱼台县| 驻马店市| 搜索| 满城县| 铜山县| 海伦市| 郑州市| 绥宁县| 齐河县| 进贤县| 鹰潭市| 静安区| 怀柔区| 措勤县| 长治县| 温宿县| 东方市| 孟连| 蒲城县| 正定县| 留坝县| 靖远县| 双江| 三穗县| 樟树市| 页游| 郴州市| 德清县| 阿图什市| 新源县| 柳江县|