jQuery 获取和设置 CSS 属性

在本教程中,您将学习如何使用 jQuery 获取或设置样式属性。

jQuery css() 方法

jQuery css() 方法用于获取 CSS 属性的计算值或为所选元素设置一个或多个 CSS 属性。

此方法提供了一种将样式直接应用于 HTML 元素(即 内联样式 )的快速方法,这些元素在样式表中尚未定义或无法轻松定义。

获取 CSS 属性值

只需将属性名称作为参数传递给 css() 方法,即可获得元素 CSS 属性的计算值。这是基本语法:

$(selector).css("propertyName");

以下示例将在单击时检索并显示 <div> 元素的 CSS 属性 background-color 的计算值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery css() Demo</title>
<style type="text/css">
    div{
        width: 100px;
        height: 100px;
        margin: 10px;
        cursor: pointer;
        display: inline-block;
    }        
</style>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $("div").click(function(){
        var color = $(this).css("background-color");
        $("#result").html(color);
    });    
});
</script>
</head>
<body>
    <div style="background-color:orange;"></div>
    <div style="background-color:#ee82ee;"></div>
    <div style="background-color:rgb(139,205,50);"></div>
    <div style="background-color:#f00;"></div>
    <p>The computed background-color property value of this DIV element is: <b id="result"></b></p>
</body>
</html>

设置单个 CSS 属性和值

css() 方法可以将属性名称和值作为单独的参数,以便为元素设置单个 CSS 属性。基本语法如下,

$(selector).css("propertyName", "value");

以下示例在单击时,将 <div> 元素的 CSS background-color 属性设置为 颜色值 red

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery css() Demo</title>
<style type="text/css">
    .box{
        width: 100px;
        height: 100px;
        margin: 10px;
        cursor: pointer;
        border: 1px solid #cdcdcd;
        display: inline-block;
    }        
</style>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $(".box").click(function(){
        $(this).css("background-color", "red");
    });    
});
</script>
</head>
<body>
    <div class="box"></div>
    <div class="box"></div>
    <div class="box"></div>
    <div class="box"></div>
</body>
</html>

设置多个 CSS 属性和值

您还可以使用 css() 方法设置多个 CSS 属性。设置元素的多个属性的基本语法可以通过以下方式给出:

$(selector).css({"propertyName":"value", "propertyName":"value", ...});      

以下示例将同时设置所选元素的 CSS 属性 background-color 以及 padding 属性。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery css() Demo</title>
<style type="text/css">
    p{
        font-size: 18px;
        font-family: Arial, sans-serif;
    }
</style>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $("button").click(function(){
        $("p").css({"background-color": "yellow", "padding": "20px"});
    });    
});
</script>
</head>
<body>
    <h1>This is a heading</h1>
    <p style="background-color:orange;">This a paragraph.</p>
    <p style="background-color:#ee82ee;">This is another paragraph.</p>
    <p style="background-color:rgb(139,205,50);">This is none more paragraph.</p>
    <p>This is one last paragraph.</p>
    <button type="button">Add CSS Styles</button>
</body>
</html>