A tutorial on Style.csstext usage in JavaScript

Source: Internet
Author: User

What is the essence of csstext?

The essence of Csstext is to set the style attribute value of an HTML element.

Csstext How to use?

The code is as follows:
document.getElementById ("D1"). Style.csstext = "color:red; font-size:13px; ";

After looking at this example, believe it or not, and know what style.csstext means, it is to set the style attribute of the HTML element.

What is the Csstext return value?

In some browsers (such as Chrome), it returns what value you assign to him. In IE is more painful, it will format the output, will attribute uppercase, will change the order of attributes, will remove the last semicolon, such as:

The code is as follows:
document.getElementById ("D1"). Style.csstext = "color:red; font-size:13px; ";
Alert (document.getElementById ("D1"). Style.csstext);

In IE, the value is: font-size:13px; Color:red.

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.