HTML - DOM Style 对象 backgroundColor 属性



HTML DOM Style 对象的 **backgroundColor** 属性用于设置或返回元素的背景颜色。

语法

以下是获取或设置 backgroundColor 属性的语法。

设置 backgroundColor 属性
object.style.backgroundColor= "color | transparent | initial | inherit";
获取 backgroundColor 属性
object.style.backgroundColor;

属性值

描述
color 设置背景颜色。
transparent 这是默认值,将背景颜色设置为透明。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示背景颜色属性。

HTML DOM Style 对象“backgroundColor”属性的示例

以下示例说明了 **backgroundColor** 属性的实现。

更改 body 的背景颜色

以下示例将整个文档的背景颜色更改为绿色。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object backgroundColor Property
    </title>
</head>
<body>
    <p>This is just a random text.</p>
    <button onclick="fun()">Change</button>
    <script>
        function fun(){
            document.body.style.backgroundColor="#04af2f";
        }
    </script>
</body>
</html>

更改 div 元素的背景颜色

以下示例将 div 元素的背景颜色更改为绿色。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object backgroundColor Property
    </title>
    <style>
        div {
            height: 400px;
            width: 400px;
        }
    </style>
</head>
<body>
    <p>This is just a random text.</p>
    <button onclick="fun()">Change</button>
    <div id="color">
        <p>This is color changing div</p>
    </div>
    <script>
        function fun(){
            document.getElementById("color")
            .style.backgroundColor="#04af2f";
        }
    </script>
</body>
</html>

获取 div 元素的背景颜色

以下示例获取 div 元素的背景颜色。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object backgroundColor Property
    </title>
    <style>
        div {
            height: 400px;
            width: 400px;
        }
    </style>
</head>
<body>
    <p>This is just a random text.</p>
    <button onclick="fun()">Change</button>
    <button onclick="get()">Get</button>
    <div id="color">
        <p>This is color changing div</p>
    </div>
    <p id="get"></p>
    <script>
        function fun(){
            document.getElementById("color")
            .style.backgroundColor="#04af2f";
        }
        function get(){
            let x= document.getElementById("color")
            .style.backgroundColor;
            document.getElementById("get").innerHTML=x;
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
backgroundColor 是 1 是 12 是 1 是 1 是 3.5
html_dom_style_object_reference.htm
广告