jQuery | css() 方法
JQuery库支持几乎所有包含在级联样式表 (CSS) 中的选择器。 JQuery 中的css()方法用于更改所选元素的样式属性。 JQuery 中的css()可以以不同的方式使用。
css() 方法可用于检查所选元素的属性的当前值:
句法:
$(selector).css(property)
返回值:它将返回所选元素的属性值。
示例 1:
Input: $("p").css("color");
Output: Output of the above input will return the
rgb() value of the element.
代码#1:
HTML
Wecome to gfg!