textareaObject.formプロパティ

textareaObject.formは、テキストエリア(Textarea要素)が所属するform要素への参照を取得するプロパティ。

構文

取得

var $form = $textareaElementReference.form;

戻り値

テキストエリア(Textarea要素)が所属する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:<textarea id="sampleA" name="sampleNameA">内容A</textarea>
    </form>
    <form id="sampleFormB">
        サンプルテキストエリアB:<textarea id="sampleB" name="sampleNameB">内容B</textarea>
    </form>
    <p>サンプルテキストエリアAが属するform要素のid属性値:<span id="sampleOutputA"></span></p>
    <p>サンプルテキストエリアBが属するform要素のid属性値:<span id="sampleOutputB"></span></p>
</div>

スポンサード リンク

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