--- id: bad87fee1348bd9aedf08830 title: テキストフィールドにプレイスホルダ―テキストを追加する challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cKdJDhg' forumTopicId: 16647 dashedName: add-placeholder-text-to-a-text-field --- # --description-- プレイスホルダ―テキストは、ユーザーが何かを入力する前に `input` 要素に表示されているテキストです。 次のようにしてプレイスホルダ―テキストを作成できます。 ```html ``` **注:** `input` 要素は終了タグを持たないことを忘れないでください。 # --instructions-- テキストタイプの `input` の `placeholder` の値に "cat photo URL" を指定してください。 # --hints-- 既存のテキストタイプの `input` 要素に、`placeholder` 属性を追加してください。 ```js assert($('input[placeholder]').length > 0); ``` `placeholder` 属性の値を `cat photo URL` に設定してください。 ```js assert( $('input') && $('input').attr('placeholder') && $('input') .attr('placeholder') .match(/cat\s+photo\s+URL/gi) ); ``` 完成した `input` 要素は終了タグを持たないはずです。 ```js assert(!code.match(/.*<\/input>/gi)); ``` 完成した `input` 要素は正しい構文でなければなりません。 ```js assert($('input[type=text]').length > 0); ``` # --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
```