当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。