2014-01-20 396 views
0

我想設置背景顏色爲藍色使用JavaScript運行與崇高文本3.我應該使用什麼命令。謝謝設置背景顏色

<!DOCTYPE HTML> 
<html> 
    <head> 
     <style type="text/css"> 
     </style> 
    </head> 
    <body> 
     <backgroundColor="blue>; 
     </backgroundColor="blue"> 
    </body> 
</html> 
+0

java或javascript?兩者都是不同的 –

+0

我不明白你的問題。你是否試圖隨機更改你的頁面背景? –

+0

可能的重複[如何用JavaScript更改背景顏色?](http://stackoverflow.com/questions/197748/how-do-i-change-the-background-color-with-javascript) –

回答

0

<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> 
0

您可以使用內嵌樣式與格設置背景色:

<!DOCTYPE HTML> 
    <html> 
     <head> 
      <style type="text/css"> 
      .bg-blue{background-color:blue;} 
      </style> 
     </head> 
     <body> 
      <div class="bg-blue"> 
      </div> 
     </body> 
    </html> 
0

謝謝你們,到現在爲止我嘗試這樣做 - 白白:

<!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">&Ouml;lvorw&auml;rmung</option> 
     <option value="2">Kesselthermostat</option> 
     <option value="3">&Ouml;lpumpe</option> 
     <option></option> 
     </select> 

     </body> 
     </html> 

現在我會努力你的 - 請耐心......並且非常感謝!