inputImageObject.formMethodは、画像を使う送信ボタン(type属性がimageであるinput要素)のformMethod属性の値を取得、もしくは、設定するプロパティ。
formMethod属性には、データの送信の仕方を指定することができる。画像を使う送信ボタンのformMethod属性を指定した場合、画像を使う送信ボタンが属するフォーム(form要素)のmethod属性よりも優先される。
構文
取得
var $formMethod = $inputElementReference.formMethod;
戻り値
画像を使う送信ボタン(type属性がimageである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」と表示する。
- 「画像を使う送信ボタン」をクリックすると、画像内におけるクリックした位置の座標と、入力欄の入力内容を、formMethod属性に指定した方法で送信する。座標は、画像の左上端を原点とする。
サンプルのソースコード
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/2014/01/javascript-dom-input-image-formMethod/" target="_blank">
【サンプルフォーム】
<br />
入力欄:<input type="text" name="sampleName" value="sampleValue">
<br />
<input type="image" src="http://alphasis.info/wp-content/uploads/2013/12/sampleImageButton.png" alt="送信" 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/2014/01/javascript-dom-input-image-formMethod/" target="_blank">
【サンプルフォーム】
<br />
入力欄:<input type="text" name="sampleName" value="sampleValue">
<br />
<input type="image" src="http://alphasis.info/wp-content/uploads/2013/12/sampleImageButton.png" alt="送信" id="sample" formMethod="get">
</form>