Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

select要素 required属性

required属性は、入力が必須であることを意味します。

使用例

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! HTML5</title>
<meta charset="UTF-8">
</head>
<body>
    <form action="./regeister.html" method="post" id="order">
        <p>
            <select required="required">
                <option></option>
                <option>りんご</option>
                <option>みかん</option>
                <option>ぶどう</option>
            <select>
        </p>
        <p>
	<button type="submit">送信</button>
        </p>
    </form>
</body>

レンダリング

初期表示

[送信]クリック