Architect's Log

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

input要素(type属性 = search)

検索用のテキスト入力フィールドを表します。

使用例

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! HTML5></title>
<meta charset="UTF-8">
</head>
<body>
    <form action="hoge.cgi" method="post">
        <p>
            検索:<input type="search" id="word" />
            <input type="submit" value="検索" />
        </p>
    </form>
</body>

レンダリング

Safariの例です。入力するとクリアボタンが表示されます。