Home  >  Article  >  Web Front-end  >  Detailed explanation of JavaScript modification of css local and global style code

Detailed explanation of JavaScript modification of css local and global style code

伊谢尔伦
伊谢尔伦Original
2017-07-19 16:32:582448browse

Modifying css style style is quite practical in some cases. You can dynamically change some styles. Next, I will introduce how to do it using JavaScript

1. Partially change the 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=”…” Incorrect! 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. Remember to write the specific style, such as

document.getElementById('obj').style.backgroundColor=”#003366″

2. Globally change the style
Usually In this case, we can achieve real-time switching of web page styles by changing the href value of the external link style, that is, "changing the template style". At this time, we first need to give an id to the target that needs to be changed, such as

. It is very simple to call, such as

点我改变样式

. Newcomers often do not know that the specific CSS style is in javascript. How to write it, 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:

 
文档标题 
 

In XML, you should add it in the declaration area as shown in the following example:

< ? xml-stylesheet type="text/css" href="http://dhtmlet.css" ?>

Second: Define an internal style block object (Embedding a Style Block)
You can insert a

block object between the and tags in your HTML document. For definition methods, please refer to style sheet syntax. An example is as follows:

 
 
文档标题 
 

Please note that setting the type attribute of the style object to "text/css" here allows browsers that do not support this type to ignore the style sheet.
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. Examples are as follows:

这一行被增加了左右的外补丁


The above is the detailed content of Detailed explanation of JavaScript modification of css local and global style code. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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