formObject.nameは、form要素(フォーム要素)のname属性を取得、もしくは、設定するプロパティ。
構文
取得
var $name = $formObject.name;
戻り値
form要素(フォーム要素)のname属性の値。
設定
$formObject.name = "formName";
- formName
- フォーム名(form要素のname属性の値)を文字列で指定。
サンプル
変更後のサンプルフォームのform要素のname属性の値:
サンプルの動作について
- 「sampleNameA」ボタンをクリックすると、【サンプルフォーム】のform要素のname属性の値を「sampleNameA」にする。「変更後のサンプルフォームのform要素のname属性の値:」の右横に「sampleNameA」と表示する。
- 「sampleNameB」ボタンをクリックすると、【サンプルフォーム】のform要素のname属性の値を「sampleNameB」にする。「変更後のサンプルフォームのform要素のname属性の値:」の右横に「sampleNameB」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setName( $name ) {
var $elementReference = document.getElementById( "sampleForm" );
$elementReference.name = $name;
var $name = $elementReference.name;
document.getElementById( "sampleOutput" ).innerHTML = $name;
}
</script>
function setName( $name ) {
var $elementReference = document.getElementById( "sampleForm" );
$elementReference.name = $name;
var $name = $elementReference.name;
document.getElementById( "sampleOutput" ).innerHTML = $name;
}
</script>
HTML
<button onclick="setName('sampleNameA');">sampleNameA</button>
<button onclick="setName('sampleNameB');">sampleNameB</button>
<p>変更後のサンプルフォームのform要素のname属性の値:<span id="sampleOutput"></span></p>
<form id="sampleForm" name="sampleNameA" method="get" action="http://alphasis.info/" target="_blank">
【サンプルフォーム】
<br />
入力欄:<input type="text" name="s" value="">
</form>
<button onclick="setName('sampleNameB');">sampleNameB</button>
<p>変更後のサンプルフォームのform要素のname属性の値:<span id="sampleOutput"></span></p>
<form id="sampleForm" name="sampleNameA" method="get" action="http://alphasis.info/" target="_blank">
【サンプルフォーム】
<br />
入力欄:<input type="text" name="s" value="">
</form>
CSS
<style>
#sampleForm * {
margin: 0;
}
</style>
#sampleForm * {
margin: 0;
}
</style>