Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery css() 方法

❮ jQuery HTML/CSS 方法

示例

设置所有 <p> 元素的颜色属性

$("button").click(function(){
  $("p").css("color", "red");
});
亲自试一试 »

定义和用法

css() 方法设置或返回所选元素的一个或多个样式属性。

用于返回属性时
此方法返回第一个匹配元素的指定 CSS 属性值。但是,简写 CSS 属性(如“background”和“border”)并未完全支持,并且在不同的浏览器中可能会产生不同的结果。

用于设置属性时
此方法为所有匹配的元素设置指定的 CSS 属性。


语法

返回 CSS 属性值

$(选择器).css(属性)

设置 CSS 属性和值

$(选择器).css(属性,值)

使用函数设置 CSS 属性和值

$(选择器).css(属性,函数(索引,当前值))

设置多个属性和值

$(选择器).css({属性:值, 属性:值, ...})

参数 描述
property 指定 CSS 属性名称,例如“color”、“font-weight”等。
value 指定 CSS 属性的值,例如“red”、“bold”等。
function(index,currentvalue) 指定一个返回 CSS 属性新值的函数
  • index - 返回集合中元素的索引位置
  • currentvalue - 返回 CSS 属性的当前值

亲自试一试 - 示例

返回 CSS 属性值
返回第一个匹配元素的指定 CSS 属性值。

使用函数设置 CSS 属性和值
使用函数更改所选元素的 CSS 属性。

设置多个 CSS 属性和值对
如何为所选元素设置多个 CSS 属性和值。


❮ jQuery HTML/CSS 方法

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.