密碼框輸入提示效果程式碼例項

admin發表於2017-02-28
通常在輸入密碼或者文字的地方都有一些提示語言,比如"請輸入使用者密碼"。

下面就通過程式碼例項介紹一下如何實現此功能。

程式碼如下:

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

相關文章