Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

จะแสดงคำใบ้สั้น ๆ ที่อธิบายค่าที่คาดหวังขององค์ประกอบใน HTML ได้อย่างไร?


ใช้ ตัวยึด คุณลักษณะใน HTML เพื่อแสดงคำใบ้ที่อธิบายค่าที่คาดหวังขององค์ประกอบ

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน 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>