欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM backgroundColor 屬性

HTML DOM Style 對象參考手冊

定義和用法

backgroundColor 屬性設(shè)置元素的背景顏色。

語法:

Object.style.backgroundColor=color-name|color-rgb
|color-hex|transparent

實例

本例設(shè)置 body 的背景色:

<html>
<head>
<style type="text/css">
body
{
background-color:#B8BFD8;
}
</style>
<script type="text/javascript">
function changeStyle()
{
document.body.style.backgroundColor="#FFCC80";
}
</script>
</head>
<body>

<input type="button" onclick="changeStyle()"
value="Change background color" />

</body>
</html>

HTML DOM Style 對象參考手冊