We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62f17fa + 15cae68 commit bd0f692Copy full SHA for bd0f692
docs/3-golden-week/06-form/index.md
@@ -15,3 +15,9 @@ import OpenInCodeSandbox from "@site/src/components/OpenInCodeSandbox";
15
例:google.comで、検索エンジンに何か入力して、検索すると、検索結果が表示されるが、そのページのURLに注目。(下画像赤線がクエリパラメータ)
16
17
## サーバーにデータを送信する
18
+form要素を使うとユーザーの入力からクエリパラメータを生成してページ遷移できる。
19
+
20
+・ formのaction属性: フォーム送信時に移動し、データを送信するページ
21
+・input要素: テキストボックス
22
+・inputのname属性: クエリパラメータのキー
23
+・button要素: form内のボタンをクリックするとformのactionに指定したページに遷移する(送信ボタンになる)
0 commit comments