Architect's Log

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

2012-10-09から1日間の記事一覧

select要素 required属性

required属性は、入力が必須であることを意味します。 使用例 <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></form></body></html>