如何在 HTML 中顯示一條介紹元素預期值的簡短提示?


使用 HTML 中的 placeholder 屬性來顯示一條介紹元素預期值的提示。

示例

你可以嘗試執行以下程式碼來實現 placeholder 屬性 −

<!DOCTYPE html>
<html>
   <body>
      <h2>Login</h2>
      <form action = "/new.php">
         <input type = "text" placeholder = "Student UserName" name = "name"/><br>
         <input type = "password" placeholder = "Password" name = "password"> <br><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>

更新於: 31-May-2020

257 次閱讀

開啟您的 職業生涯

完成課程獲得認證

立即開始
廣告
© . All rights reserved.