ウェブ学のすすめ

Study of Web Design & Programing

JavaScriptによる文字色と背景色の変更

JavaScriptによる文字色と背景色の変更 - jsdo.it - share JavaScript, HTML5 and CSS

ポイント

fgColorプロパティ

文字の色を参照・設定する

bgColorプロパティ

背景の色を参照・設定する

コード

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Hello!</title>
</head>
<body onLoad = "window.defaultStatus = '色の設定'">
<script type="text/javascript">
<!--
  document.fgColor = '#ff6600';
  document.bgColor = '#eeeeee';
//-->
</script>
<p>文字色と背景色を変更しました。</p>
</body>
</html>