我想設置背景顏色爲藍色使用JavaScript運行與崇高文本3.我應該使用什麼命令。謝謝設置背景顏色
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<backgroundColor="blue>;
</backgroundColor="blue">
</body>
</html>
我想設置背景顏色爲藍色使用JavaScript運行與崇高文本3.我應該使用什麼命令。謝謝設置背景顏色
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<backgroundColor="blue>;
</backgroundColor="blue">
</body>
</html>
<style>
tag用於在同一個HTML文檔中聲明CSS屬性。
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
.blueDiv
{
background-color: blue;
}
</style>
</head>
<body>
<div class="blueDiv">
Background color of this div is blue.
</div>
</body>
</html>
您可以使用內嵌樣式與格設置背景色:
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
.bg-blue{background-color:blue;}
</style>
</head>
<body>
<div class="bg-blue">
</div>
</body>
</html>
謝謝你們,到現在爲止我嘗試這樣做 - 白白:
<!DOCTYPE>
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>DropDown</title>
<script language="javascript">
fuction()
$("select").change(function() {
$(this).css("background-color", ($(this).attr("data-correctVal") ==
$(this).val()) ? "green" : "red");
});
</script>
</head>
<body>
<select name="Armaturen">
<option value="1">Ölvorwärmung</option>
<option value="2">Kesselthermostat</option>
<option value="3">Ölpumpe</option>
<option></option>
</select>
</body>
</html>
現在我會努力你的 - 請耐心......並且非常感謝!
java或javascript?兩者都是不同的 –
我不明白你的問題。你是否試圖隨機更改你的頁面背景? –
可能的重複[如何用JavaScript更改背景顏色?](http://stackoverflow.com/questions/197748/how-do-i-change-the-background-color-with-javascript) –