input placeholder屬性用法介紹

admin發表於2017-02-22

placeholder是html5新增的一個屬性。

使用它就可以輕鬆的實現文字框輸入提示效果,以前都是要結合js才能夠實現的。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/plain;charset=utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
input{
  width:200px;
  height:18px;
}
</style>
</head>
<body>
<input type="text" placeholder="請輸入螞蟻部落網址">
</body>
</html>

使用placeholder為文字框設定提示語言,當在文字框正式輸入內容的時候,會自動將提示語清除。

相關文章