CSS属性の値を取得する。
jQueryObject.css(name)
CSSプロパティに値を設定する。
jQueryObject.css(propertyName, value)
jQueryObject.css(object)
$("#id").css({
color: red,
font-style: italic
});
css メソッドの使用例を以下に示す。
<p id="txt">The quick brown fox jumps over the lazy dog.</p>
<p>color: <span id="color"></span></p>
<button id="set">Set color property</button>
<button id="get">Get color property</button>
$("#set").click(function (){
$("#txt").css("color", "red");
});
$("#get").click(function () {
$("#color").html($("#txt").css("color"));
});
The quick brown fox jumps over the lazy dog.
color:
OpenJS Foundation (2022) .css() | jQuery API Documentation