inputSubmitObject.formMethodは、送信ボタン(type属性がsubmitであるinput要素)のformMethod属性の値を取得、もしくは、設定するプロパティ。
formMethod属性には、データの送信の仕方を指定することができる。送信ボタンのformMethod属性を指定した場合、送信ボタンが属するフォーム(form要素)のmethod属性よりも優先される。
構文
取得
var $formMethod = $inputElementReference.formMethod;
戻り値
送信ボタン(type属性がsubmitであるinput要素)のformMethod属性の値。
設定
$inputElementReference.formMethod = "method";
- method
- データの送信の仕方を次の2つから指定する。
get
:URLの後にデータを付け加えて送信。URL?nameA=valueA&nameB=valueB
post
:URLの後にデータを付け加えないで、本文に格納して送信。
サンプル
送信ボタンのformMethod属性の値:
サンプルの動作について
- 「送信」ボタンをクリックすると、【サンプルフォーム】の内容を送信する。
- 「get」ボタンをクリックすると、「送信」ボタンのformMethod属性値を「get」に設定する。「送信ボタンのformMethod属性の値:」の右横に「get」と表示する。
- 「post」ボタンをクリックすると、「送信」ボタンのformMethod属性値を「post」に設定する。「送信ボタンのformMethod属性の値:」の右横に「post」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setFormMethod( $formMethod ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.formMethod = $formMethod;
var $formMethod = $elementReference.formMethod;
document.getElementById( "sampleOutputA" ).innerHTML = $formMethod;
}
</script>
function setFormMethod( $formMethod ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.formMethod = $formMethod;
var $formMethod = $elementReference.formMethod;
document.getElementById( "sampleOutputA" ).innerHTML = $formMethod;
}
</script>
HTML
<p>
<button onclick="setFormMethod('get');">get</button>
<button onclick="setFormMethod('post');">post</button>
</p>
<p>送信ボタンのformMethod属性の値:<span id="sampleOutputA"></span></p>
<form id="sampleForm" method="post" action="http://alphasis.info/" target="_blank">
【サンプルフォーム】
<br />
入力欄:<input type="text" name="s" value="JavaScript">
<br />
<input type="submit" value="送信" id="sample" formMethod="get">
</form>
<button onclick="setFormMethod('get');">get</button>
<button onclick="setFormMethod('post');">post</button>
</p>
<p>送信ボタンのformMethod属性の値:<span id="sampleOutputA"></span></p>
<form id="sampleForm" method="post" action="http://alphasis.info/" target="_blank">
【サンプルフォーム】
<br />
入力欄:<input type="text" name="s" value="JavaScript">
<br />
<input type="submit" value="送信" id="sample" formMethod="get">
</form>