Home>Article>Web Front-end> How to modify css class in jquery

How to modify css class in jquery

青灯夜游
青灯夜游 Original
2022-04-21 14:15:29 2854browse

Modification method: 1. Use attr() to set the class attribute value, modify the css class name, the syntax is "element object.attr("class","new class")"; 2. Remove the old class and To add a new css class, the syntax is "element object.removeClass("old class name").addClass("new class name")".

How to modify css class in jquery

The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.

jquery method to modify css class

Method 1: Use attr() to set the class attribute value and modify the css class name

       

这是一个大标题

这是一个段落

How to modify css class in jquery

Method 2: Use removeClass() to remove the old class and addClass() to add the new css class

  • removeClass() method removes one or more classes from the selected element.

  • addClass() method adds one or more classes to the selected element. This method does not remove existing class attributes, it only adds one or more class attributes.

       

这是一个大标题

这是一个段落

How to modify css class in jquery

[Recommended learning:jQuery video tutorial,web front-end video

The above is the detailed content of How to modify css class in jquery. 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