Skip to content

Commit b6110dd

Browse files
authored
Merge pull request #377 from ut-code/add-inline-code-block-in-form-section
Add inline code block in form section
2 parents 8da50e2 + 9f6549a commit b6110dd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/3-web-servers/06-form/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ encodeURIComponent("日本語"); // "%E6%97%A5%E6%9C%AC%E8%AA%9E"
6666

6767
## サーバーにデータを送信する
6868

69-
form 要素を使うとユーザーの入力からクエリパラメータを生成してページ遷移できます。
69+
`form` 要素を使うとユーザーの入力からクエリパラメータを生成してページ遷移できます。
7070

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

7676
以下のコードの、HTML ファイルと、JavaScript ファイルを作成して実行してみましょう。
7777

0 commit comments

Comments
 (0)