表單中,加入placeholder屬性,可以幫助用戶理解要輸入什么信息。比如以下這段代碼:
<div class="login">
<label for="username">賬號:</label>
<input id="username" type="text" name="username" placeholder="輸入賬號"><br>
<label for="password">密碼:</label>
<input id="password" type="password" name="password" placeholder="輸入密碼">
</div>
在瀏覽器中顯示的是如下圖,placeholder屬性增加的是里面的“輸入賬號”與“輸入密碼”。

Paste_Image.png