A brief discussion on modifying css style with JS_javascript skills
WBOY
Release: 2016-05-16 17:34:33
Original
1387 people have browsed it
1. Partial change of style
There are three types: changing direct style, changing className and changing cssText. What needs to be noted is: Pay attention to capitalization: Javascript is very sensitive to capitalization. ClassName cannot write "N" as "n", and cssText cannot write "T" as "t", otherwise it cannot be implemented. Effect. Calling method: If you change className, declare the class in the style sheet in advance, but do not follow style when calling, like document.getElementById('obj').style.className=”…” Wrong! It can only be written as: document.getElementById('obj').className="..." Change cssText But if you use cssText, you must add style. The correct way to write it is: document.getElementById('obj') .style.cssText=”…”
I don’t need to talk about changing the direct style. Just remember to write the specific style, such as document.getElementById('obj').style.backgroundColor= ”#003366″
2. Globally change the style
Normally, we can achieve real-time switching of web page styles by changing the href value of the external link style. That is, "change the template style". At this time, we first need to give an id to the target that needs to be changed, such as
The call is very simple, such as
Click me to change the style span> Newcomers often don’t know how to write specific CSS styles in JavaScript, and sometimes the requirements are different in different browsers. For example, float is written as styleFloat in IE and cssFloat in FIREFOX, which requires everyone's accumulation. Searching "ccvita javascript" in Google may help your doubts.
Basic knowledge There are usually three ways to call style sheets in web pages. First method: Linking to an external style sheet file (Linking to a Style Sheet) You can create an external style sheet file (.css) first, and then use the HTML link object. An example is as follows:
Please note that setting the type attribute of the style object to "text/css" here does not support this type. Browsers ignore stylesheets.
The third type: Inline Definition (Inline Styles) Inline definition is to use the object's style attribute within the object's tag to define the style sheet attributes that apply to it. An example is as follows:
This line is added with left and right outer patches
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn