HTML5-placeholder属性
HTML 5<input> placeholder属性
placeholder属性提供可描述输入字段预期值的提示信息(hint)。
该提示会在输入字段为空时显示,并会在字段获得焦点时消失。
**placeholder属性适用于以下的<input>类型:text,search,url,telephone,email以及password.
<input placeholder="text">
<!DOCTYPE HTML> <html> <body> <form action="/example/html5/demo_form.asp" method="get"> <input type="search" name="user_search" placeholder="Search W3School" /> <input type="submit" /> </form> </body> </html>
You are never too old to set another goal or to dream a new dream!!!