Js css style operation code (batch operation)

Source: Internet
Author: User

Using JavaScript to control css styles allows a webpage to achieve a good user experience or even an animation effect. Efficiency is also taken into account. We usually use the following two methods to write css styles using js:

In general, we use js to set the style of element objects in this form:

Copy to ClipboardReference: [www.bkjia.com]
Var element = document. getElementById ("id ");
Element. style. width = "20px ";
Element. style. height = "20px ";
Element. style. border = "solid 1px red ";

However, the above method has a disadvantage. There are many styles and a lot of code. Besides, overwriting object styles through JS is a typical process of destroying and recreating original styles, such destruction and reconstruction will increase the browser overhead.
Js has a cssText method:
Syntax: obj.style.css Text ("style ");
The above code can be modified:

Copy to ClipboardReference content: www.bkjia.comw.element.style.css Text = "width: 20px; height: 20px; border: solid 1px red;"; this method can avoid repeated page reflow and improve page performance.

Related Article

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.