UK [ˈbækɡraund ˈkʌlə] US [ˈbækˌɡraʊnd ˈkʌlɚ]
背景色
JavaScriptのbackgroundColorプロパティ 構文
関数:要素の背景色を設定します。
構文: Object.style.backgroundColor=カラー名|カラーrgb|カラー16進|透明
JavaScriptのbackgroundColorプロパティ 例
<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>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します