LoginSignup
0
1

More than 3 years have passed since last update.

HTML4日目

Posted at

少しずつ理解してきた。。。超初心者レベルだけど、少しずつ知識を増やせて行けて、楽しい。

フォームバリデーション

  • バリデーション: 入力された内容が要件を満たしているか、妥当性を確認すること(?) ちょっと何言ってるかわかんないっすね(富沢風)

    入力しないままサブミットすると「入力してください」的な。
        <form action="#" method="post">
            <label for="username">名前を入力してください</label>
            <input id="username" name="username" required>
            <input type="submit" value="送信">
        </form>
  • label: フォームの項目名を表示 labelのfor=inputのid → ラベルをクリックして、フォームを選択できるようにする。
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1