Home>Article>Web Front-end> How to change css style with jquery

How to change css style with jquery

青灯夜游
青灯夜游 Original
2021-04-28 16:16:45 3390browse

Jquery method to change css style: first use "$()" to get the HTML element node, and then use the css() method to change the css style; the specific syntax is "$("selector").css(" attribute Name","property value");".

How to change css style with jquery

The operating environment of this tutorial: windows7 system, jquery3.0.0 version, Dell G3 computer.

In jquery, you can use the css() method to change the css style.

The css() method sets or returns one or more style attributes of the selected element.

The basic syntax is as follows

$(‘选择器’).css('属性名称','属性值');

Example:

      
  • 测试文本
  • 测试文本
  • 测试文本
  • 测试文本

Rendering:

How to change css style with jquery

Related Recommended video tutorial:jQuery Tutorial(Video)

The above is the detailed content of How to change css style with 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