Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/3-golden-week/06-form/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,9 @@ import OpenInCodeSandbox from "@site/src/components/OpenInCodeSandbox";
例:google.comで、検索エンジンに何か入力して、検索すると、検索結果が表示されるが、そのページのURLに注目。(下画像赤線がクエリパラメータ)

## サーバーにデータを送信する
form要素を使うとユーザーの入力からクエリパラメータを生成してページ遷移できる。

・ formのaction属性: フォーム送信時に移動し、データを送信するページ
・input要素: テキストボックス
・inputのname属性: クエリパラメータのキー
・button要素: form内のボタンをクリックするとformのactionに指定したページに遷移する(送信ボタンになる)