dateオブジェクト Javaスクリプトのオブジェクト formオブジェクト

documentオブジェクト(documents配列)

現在、表示している文書に情報を持っているオブジェクトで、windowオブジェクトのプロパティでもあります。

シンタックス

anchorオブジェクトの定義は、次のHTMLとonLoadonUnloadのイベントハンドラーが使用されます。

	
	
	<body
	  background="backgroundimage"
	  bgcolor="#backgroundColor"
	  fgcolor="#foregroundColor"
	  link="#unfollowedLinkColor"
	  alink="#activatedLinkColor"
	  vlink="#visitedLinkColor"
	  [onLoad="handlerText"]
	  [onUnLoad="handlerText"]>
	</body>
	
	
色については名称で指定することもできます。

documentオブジェクトのプロパティやメソッドを使用する場合、次のように指定します。

  1. document.プロパティ名
  2. document.メソッド名(パラメータ)

プロパティとなっているオブジェクト

プロパティ

メソッド

	
	
	<script>
	
	document.write(document.bgColor + "<p>");
	document.writeln(document.fgColor + "<p>");
	document.writeln(document.links[0] + "<p>");
	document.writeln(document.links[1]);
	
	</script>
	
	

関連項目



Copyright (C) 1996-2003 by Yasukazu Yokoi. All Rights Reserved.