inputTextObject.formプロパティ

inputTextObject.formは、1行テキスト入力欄(type属性がtextであるinput要素)が所属するform要素への参照を取得するプロパティ。

構文

取得

var $form = $inputElementReference.form;

戻り値

1行テキスト入力欄(type属性がtextであるinput要素)が所属するform要素への参照。

サンプル

サンプル入力欄A:
サンプル入力欄B:

サンプル入力欄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>

HTML

<div id="sampleWarp">
    <form id="sampleFormA">
        サンプル入力欄A:<input type="text" id="sampleA" value="A">
    </form>
    <form id="sampleFormB">
        サンプル入力欄B:<input type="text" id="sampleB" value="B">
    </form>
    <p>サンプル入力欄Aが属するform要素のid属性値:<span id="sampleOutputA"></span></p>
    <p>サンプル入力欄Bが属するform要素のid属性値:<span id="sampleOutputB"></span></p>
</div>

スポンサード リンク

カテゴリー: DOM, input type=text オブジェクト, JavaScript, リファレンス パーマリンク