Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM Input Thuộc tính phần giữ chỗ Email

Thuộc tính trình giữ chỗ Email đầu vào HTML DOM đặt / trả về một chuỗi thường được sử dụng để cung cấp gợi ý cho người dùng về văn bản đầu vào sẽ trông như thế nào.

Cú pháp

Sau đây là cú pháp -

  • Giá trị chuỗi trả về
inputEmailObject.placeholder
  • Đặt trình giữ chỗ sang stringValue
inputEmailObject.placeholder = stringValue

Ví dụ

Hãy để chúng tôi xem ví dụ về Trình giữ chỗ Email nhập tài sản -

<!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>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Trước khi nhấp vào ‘Bạn nên nhập chi tiết nào?’ nút -

HTML DOM Input Thuộc tính phần giữ chỗ Email

Sau khi nhấp vào ‘Bạn nên nhập chi tiết nào?’ nút -

HTML DOM Input Thuộc tính phần giữ chỗ Email