當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Input Email Placeholder用法及代碼示例


DOM輸入電子郵件占位符屬性用於設置或返回電子郵件字段的占位符屬性的值。占位符屬性指定一個簡短提示,用於描述輸入字段/文本區域的期望值。在用戶輸入值之前,該字段會顯示簡短提示。

用法:

  • 它用於返回占位符屬性。
    emailObject.placeholder
  • 它用於設置占位符屬性。
    emailObject.placeholder = text

屬性值:


  • text:它定義了簡短的提示,描述了“電子郵件字段”的期望值。

返回值:它返回一個字符串值,該字符串值表示描述電子郵件字段的期望值的簡短提示。

示例1:本示例說明了如何返回屬性。

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        HTML DOM Input Email placeholder Property  
    </title>  
</head>      
  
<body STYLE="TEXT-ALIGN:CENTER;">  
  
    <h1> GeeksforGeeks</h1>  
  
    <h2>DOM Input Email placeholder Property</h2>  
  
    E-mail:<input type="email" id="email" name="myGeeks"
         placeholder="careers@geeksforgeeks.org"> <BR><br> 
  
    <button onclick="myGeeks()">  
        Click Here!  
    </button>  
      
    <p id="GFG" style="font-size:20px;color:green;"></p>  
      
    <!-- Script to access input element with  
            type email attribute -->
    <script>  
        function myGeeks() {  
        <!--return the placeholder Property -->
            var em = document.getElementById("email").placeholder; 
            document.getElementById("GFG").innerHTML = em;  
        }  
    </script>  
</body>  
  
</html>                     

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:本示例說明了如何設置屬性。

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        HTML DOM Input Email placeholder Property  
    </title>  
</head>      
  
<body STYLE="TEXT-ALIGN:CENTER;">  
  
    <h1> GeeksforGeeks</h1>  
  
    <h2>DOM Input Email placeholder Property</h2>  
  
    E-mail:<input type="email" id="email" name="myGeeks"
         placeholder="careers@geeksforgeeks.org"> <BR><br> 
  
    <button onclick="myGeeks()">  
        Click Here!  
    </button>  
      
    <p id="GFG" style="font-size:20px;color:green;"></p>  
      
    <!-- Script to access input element with  
            type email attribute -->
    <script>  
        function myGeeks() {  
        <!--setting the multiple Property -->
            var em = document.getElementById("email").placeholder = 
                                           "Input Your Email Address"; 
            document.getElementById("GFG").innerHTML  
              = "The value of the placeholder attribute was changed to:"  
                 + em;  
        }  
    </script>  
</body>  
  
</html>                     

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM輸入電子郵件占位符屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Email Placeholder Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。