When no width/height is displayed for the element, use currentStyle in IE to get it as auto.

Source: Internet
Author: User

We know that the currentStyle attribute can be used in IE to obtain the actual width and height of an element. However, if the width and height of the element are not displayed, this attribute cannot be used and the obtained value is auto. As follows:
Copy codeThe Code is as follows:
<Div> abcd </div>
<Script>
Var div = document. getElementsByTagName ('div ') [0];
Alert (div. currentStyle. width );
Alert (div. currentStyle. height );
</Script>

Auto is output in IE6, 7/8, and 9. If the displayed width and height are set, the actual width and height are output. As follows:

1. Set using the inline style attribute
Copy codeThe Code is as follows:
<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. Set style labels through page embedding
Copy codeThe Code is as follows:
<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>

Will output: 100px, 50px

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.