inputPasswordObject.formは、パスワード入力欄(type属性がpasswordであるinput要素)が所属するform要素への参照を取得するプロパティ。
構文
取得
var $form = $inputElementReference.form;
戻り値
パスワード入力欄(type属性がpasswordであるinput要素)が所属するform要素への参照。
サンプル
パスワード入力欄Aが属するform要素のid属性値:
パスワード入力欄Bが属するform要素のid属性値:
サンプルのソースコード
JavaScript
<script type="text/javascript">
window.onload = function () {
document.getElementById( "sampleOutputA" ).innerHTML = document.getElementById( "sampleA" ).form.id;
document.getElementById( "sampleOutputB" ).innerHTML = document.getElementById( "sampleB" ).form.id;
}
</script>
window.onload = function () {
document.getElementById( "sampleOutputA" ).innerHTML = document.getElementById( "sampleA" ).form.id;
document.getElementById( "sampleOutputB" ).innerHTML = document.getElementById( "sampleB" ).form.id;
}
</script>
HTML
<div id="sampleWarp">
<form id="sampleFormA">
パスワード入力欄A:<input type="password" id="sampleA" value="">
</form>
<form id="sampleFormB">
パスワード入力欄B:<input type="password" id="sampleB" value="">
</form>
<p>パスワード入力欄Aが属するform要素のid属性値:<span id="sampleOutputA"></span></p>
<p>パスワード入力欄Bが属するform要素のid属性値:<span id="sampleOutputB"></span></p>
</div>
<form id="sampleFormA">
パスワード入力欄A:<input type="password" id="sampleA" value="">
</form>
<form id="sampleFormB">
パスワード入力欄B:<input type="password" id="sampleB" value="">
</form>
<p>パスワード入力欄Aが属するform要素のid属性値:<span id="sampleOutputA"></span></p>
<p>パスワード入力欄Bが属するform要素のid属性値:<span id="sampleOutputB"></span></p>
</div>