GetStyle (obj, attr) compatible with get CSS

Source: Internet
Author: User

The value of the CSS property of the set element can be used with the style property of elements, where the dom.style.attr is mostly undefined;

Dom.style.attr is used to get the inline style, and now the page is basically an outer chain style sheet so that the value is not obtained; so it can only be undefined;

How do you get it, or set its style? There is a GetStyle () method below:

<script>
function GetStyle (obj, attr)
{
if (Obj.currentstyle)
{
return obj.currentstyle[attr];
}
Else
{
Return getComputedStyle (Obj,false) [attr];
}
}
Window.onload=function () {
var Aaa=document.getelementbyid ("DIV1");
Alert (GetStyle (DIV1, ' width '))
}
</script>

This will be available at the time of acquisition.

GetStyle (obj, attr) compatible with get CSS

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.