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

HTML DOM Input Email placeholder Property


คุณสมบัติตัวยึดตำแหน่ง HTML DOM Input Email ตั้งค่า/ส่งคืนสตริงที่โดยทั่วไปใช้เพื่อให้คำแนะนำแก่ผู้ใช้ว่าข้อความที่ป้อนจะมีลักษณะอย่างไร

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

  • คืนค่าสตริง
inputEmailObject.placeholder
  • การตั้งค่า ตัวยึดตำแหน่ง เป็น stringValue
inputEmailObject.placeholder = stringValue

ตัวอย่าง

ให้เราดูตัวอย่างของ Input Email placeholder ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>Input Email placeholder</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Email-placeholder</legend>
<label for="EmailSelect">Employee ID :
<input type="email" id="EmailSelect">
</label>
<input type="button" value="What details should be entered?" onclick="setPlaceholder()">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputEmail = document.getElementById("EmailSelect");
   function setPlaceholder() {
      inputEmail.placeholder = '[email protected]';
      divDisplay.textContent = inputEmail.placeholder+' --> Replace Name & ID by details provided.';
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ก่อนคลิก 'ควรป้อนรายละเอียดอะไรบ้าง' ปุ่ม −

HTML DOM Input Email placeholder Property

หลังจากคลิก 'ควรป้อนรายละเอียดอะไรบ้าง' ปุ่ม −

HTML DOM Input Email placeholder Property