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


HTML Input Reset form用法及代码示例


HTML DOM中的“输入重置表单”属性用于返回包含输入重置按钮字段的表单的引用。它是只读属性。

用法:

resetObject.form 

下面的示例说明了Input reset form属性。


例:本示例返回“输入重置”表单属性。

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

输出:
单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入重置表单“属性”支持的浏览器如下:

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


相关用法


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