inputRadioObject.formは、ラジオボタン(type属性がradioであるinput要素)が所属するform要素への参照を取得するプロパティ。
構文
取得
var $form = $inputElementReference.form;
戻り値
ラジオボタン(type属性がradioである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">
<label><input type="radio" name="sampleRadioA" id="sampleA" value="A"> ラジオボタンA</label>
</form>
<form id="sampleFormB">
<label><input type="radio" name="sampleRadioB" id="sampleB" value="B"> ラジオボタンB</label>
</form>
<p>ラジオボタンAが属するform要素のid属性値:<span id="sampleOutputA"></span></p>
<p>ラジオボタンBが属するform要素のid属性値:<span id="sampleOutputB"></span></p>
</div>
<form id="sampleFormA">
<label><input type="radio" name="sampleRadioA" id="sampleA" value="A"> ラジオボタンA</label>
</form>
<form id="sampleFormB">
<label><input type="radio" name="sampleRadioB" id="sampleB" value="B"> ラジオボタンB</label>
</form>
<p>ラジオボタンAが属するform要素のid属性値:<span id="sampleOutputA"></span></p>
<p>ラジオボタンBが属するform要素のid属性値:<span id="sampleOutputB"></span></p>
</div>