HTML <input> 標籤html
帶有 placeholder 文本的搜索字段:html5
<form action="demo_form.asp" method="get"> <input type="search" name="user_search" /> <input type="submit" /> </form> placeholder="Search W3School"
placeholder 屬性提供可描述輸入字段預期值的提示信息(hint)。url
該提示會在輸入字段爲空時顯示,並會在字段得到焦點時消失。code
註釋:placeholder 屬性適用於如下的 <input> 類型:text, search, url, telephone, email 以及 password。orm
placeholder 屬性是 HTML5 中的新屬性。htm
<input placeholder="text">
值 | 描述 |
---|---|
text | 規定用於驗證輸入字段的模式。 |