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


HTML Input Reset type用法及代码示例


HTML DOM中的输入重置类型属性用于返回重置字段的表单元素的类型。它总是返回输入重置字段的文本。

用法:

resetObject.type

以下示例程序旨在说明HTML DOM中的reset type属性:


例:本示例返回reset字段的form元素的类型。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input reset type property  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>DOM Input reset type Property</h2>  
      
    <input type="reset" id="GeekReset" value="Reset form">  
  
    <p> 
        Click on below button to return the Property 
    </p> 
  
    <button onclick="myGeeks()">  
        Click Here  
    </button>  
      
    <p id="Geek_p"></p>  
      
    <script>  
        function myGeeks() {  
              
            // access input element with type = "reset"  
            var x =  
            document.getElementById("GeekReset").type;  
            document.getElementById("Geek_p").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入重置类型属性支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Reset type Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。