| (フォーム) value | 
					           | 
					値または文字を参照/設定します | 
				
			
		
		
			- 書式 
			
 - document.★.◆.value 
			
-   ★=フォーム名 または forms[ 参照番号 ] 
			
-   ◆=エレメント名 または elements[ 参照番号 ] 
			
   - 文例
			
 - myValue = document.forms[0].elements[0].value 
			
- myValue = document.myFORM.myInput.value 
			
  - 上位オブジェクト
			
 - button, checkbox, fileUpload, hidden, password, radio, reset, submit, text, textarea 
			
 - 説明
			
 - フォームエレメント(入力文字やメニュー)の値や文字を参照/設定します。 
			
 - 関連
			
 
elements, 
type