ホームページ > 記事 > ウェブフロントエンド > button_javascript スキルのフォーム ID を取得する JavaScript メソッド
この記事の例では、JavaScript を使用してボタンのフォーム ID を取得する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
ここでは、JavaScript を使用してフォーム ボタンの ID を取得します。これは、次の JS コードを通じて取得できます。
<!DOCTYPE html> <html> <body> <h1>www.sharejs.com</h1> <form id="form1"> <button id="button1" type="button">Click me!</button> </form> <p>The id of the form containing the button is: <script> document.write(document.getElementById("button1").form.id); </script></p> </body> </html>
実行結果は次のとおりです:
The id of the form containing the button is:button1
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。