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


HTML Input Email defaultValue用法及代碼示例


HTML DOM中的Input Email defaultValue屬性用於設置或返回Email Field的默認值。此屬性用於反映HTML值屬性。默認值和value屬性之間的主要區別在於,默認值指示在屬性中指定的默認值,而該值包含進行一些更改後的當前值。當我們要查找電子郵件字段是否已更改時,此屬性很有用。

用法:

  • 它用於返回defaultValue屬性。
    emailObject.defaultValue
  • 它用於設置defaultValue屬性。
    emailObject.defaultValue = value

屬性值:它包含單個屬性值,該值定義“電子郵件字段”的默認值。


返回值:它返回一個表示電子郵件字段默認值的字符串值。

範例1:本示例返回Input Email defaultValue屬性。

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        HTML DOM Input Email defaultValue Property 
    </title>  
</head>      
  
<body style="text-align:center;"> 
  
    <h1> GeeksforGeeks</h1>  
  
    <h2>DOM Input Email defaultValue Property</h2>  
  
    E-mail:<input type="email" id="email"
            value="careers@geeksforgeeks.org">  
  
    <button onclick="myGeeks()">  
        Click Here!  
    </button>  
      
    <p id="GFG" style="font-size:25px;color:green;"></p>  
      
    <!-- Script to access input element with  
            type email attribute -->
    <script>  
        function myGeeks() {  
            var em = document.getElementById("email").defaultValue; 
            document.getElementById("GFG").innerHTML = em;  
        }  
    </script>  
</body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:本示例設置輸入電子郵件的defaultValue屬性。

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        HTML DOM Input Email defaultValue Property 
    </title>  
</head>      
  
<body style="text-align:center;"> 
  
    <h1> GeeksforGeeks</h1>  
  
    <h2>DOM Input Email defaultValue Property</h2>  
  
    E-mail:<input type="email" id="email"
            value="careers@geeksforgeeks.org">  
  
    <button onclick="myGeeks()">  
        Click Here!  
    </button>  
      
    <p id="GFG" style="font-size:25px;color:green;"></p>  
      
    <!-- Script to access input element with  
            type email attribute -->
    <script>  
        function myGeeks() {  
            var em = document.getElementById("email").defaultValue 
                    = "manaschhabra22@gmail.com" 
                      
            document.getElementById("GFG").innerHTML 
                    = "The value was changed to " + em;  
        }  
    </script>  
</body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM輸入Email defaultValue屬性支持的瀏覽器:

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


相關用法


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