html5新属性 placeholder

来源:互联网 发布:女声变男声软件 编辑:程序博客网 时间:2024/09/21 09:05
<form action="demo_form.asp" method="get">  <input type="search" name="user_search" placeholder="Search W3School" />  <input type="submit" /></form>

定义和用法

placeholder 属性提供可描述输入字段预期值的提示信息(hint)。

该提示会在输入字段为空时显示,并会在字段获得焦点时消失。

注释:placeholder 属性适用于以下的 <input> 类型:text, search, url, telephone, email 以及 password。

来自http://www.w3school.com.cn/html5/att_input_placeholder.asp