「JavaScript」複数フォーム情報を取得するサンプル

2021年6月14日

1.フォーム情報の取得
<form id="frmA">
<input type="button" onclick="alert(document.forms[0].id);" value="frmA’s form" />
</form>

<form id="frmB">
<input type="button" onclick="alert(document.forms[1].id);" value="frmB’s form" />
</form>

2.フォーム内要素の取得
var selForm = document.forms[index];
var selFormElement = document.forms[index].elements[index];

JavaScript

Posted by arkgame