--- id: bad87fee1348bd9aedc08830 title: 給表單添加一個必填字段 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cMd4EcQ' forumTopicId: 18360 dashedName: use-html5-to-require-a-field --- # --description-- 當你設計表單時,你可以指定某些字段爲必填項(required),只有當用戶填寫了該字段後,纔可以提交表單。 如果你想把文本輸入框設置爲必填項,在 `input` 元素中加上 `required` 屬性就可以了,例如:`` # --instructions-- 請給 `input` 元素加上 `required` 屬性,這樣用戶就必須先在輸入框裏填入內容,然後纔可以提交表單。 然後嘗試在不輸入任何文本的情況下提交表單, 看看 HTML5 表單是如何通知你這個字段是必填的。 # --hints-- `input` 元素應有 `required` 屬性。 ```js assert($('input').prop('required')); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
``` # --solutions-- ```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```