gpt4 book ai didi

javascript - 使用 JavaScript HTML DOM 更改背景颜色的最佳方法

转载 作者:行者123 更新时间:2023-11-30 10:04:17 27 4
gpt4 key购买 nike

使用 JavaScript 更改元素背景颜色的最合适且跨浏览器兼容的方法是什么?

<!DOCTYPE html>
<html>
<head>
<title>Demo page</title>
</head>
<body>

<h1 id="head1" style="background-color:red">This is a heading</h1>

<script>

// this one?
document.getElementById("head1").style["background-color"] = "yellow";

// this one?
document.getElementById("head1").style.backgroundColor = "yellow";

//or this one?
document.getElementById("head1").style.background = "yellow";

</script>

</body>
</html>

最佳答案

获取元素,然后使用 .style 属性和 .backgroundColor 属性对其进行更改:

function foo(){
document.getElementById("head1").style.backgroundColor = "yellow";
}
<!DOCTYPE html>
<html>
<head>
<title>Demo page</title>
</head>
<body>

<h1 id="head1" style="background-color:red">This is a heading</h1>
<button onclick="foo()">Click!</button>

</body>
</html>

因此,您的第二个nd选项是正确的。

关于javascript - 使用 JavaScript HTML DOM 更改背景颜色的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30115780/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com