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


HTML Input Submit formMethod用法及代码示例


HTML DOM中的Input Submit formMethod属性用于设置或返回Submit Button的formMethod属性的值。 formMethod属性用于指定提交表单时用于发送数据的HTTP方法。 HTTP方法有两种,即GET和POST。此属性覆盖<form>元素的method属性。

用法:

  • 它返回Input Submit formMethod属性。
    submitObject.formMethod
  • 它用于设置Input Submit formMethod属性。
    submitObject.formMethod = get|post

属性值:


  • GET:在GET方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中可见。
  • POST:在post方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中不可见,因为它在GET方法中可见。

返回值:它返回一个字符串值,该字符串值表示提交表单时用于发送数据的HTTP方法。

范例1:本示例说明了如何返回Input Submit formMethod属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Submit formMethod Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
    <h1> 
        GeeksForGeeks 
    </h1> 
      
    <h2>  
        HTML DOM Input Submit formMethod Property  
    </h2>  
      
    <form action="#" method="get" target="_self"> 
        <input type = "submit" id = "Geeks" name="myGeeks" 
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" formMethod="post"> 
    </form> 
      
    <p> 
        click on below button to return the Property 
    </p> 
      
    <button onclick = "myGeeks()">  
        Click Here!  
    </button>  
      
    <p id = "GFG"style="font-size:25px;"></p>  
      
    <!-- Script to set submit formMethod Property -->
    <script>  
        function myGeeks() {  
            var btn = document.getElementById("Geeks").formMethod; 
            document.getElementById("GFG").innerHTML = btn;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

范例2:本示例说明如何返回Input Submit formMethod属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Submit formMethod Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
    <h1> 
        GeeksForGeeks 
    </h1> 
      
    <h2>  
        HTML DOM Input Submit formMethod Property  
    </h2> 
      
    <form action="#" method="get" target="_self"> 
        <input type = "submit" id = "Geeks"
            name="myGeeks" value = "Submit @ geeksforgeeks"
            formTarget="_blank" formMethod="post"> 
    </form> 
      
    <p> 
        click on below button to set the Property 
    </p> 
      
    <button onclick = "myGeeks()">  
        Click Here!  
    </button>  
      
    <p id = "GFG"style="font-size:25px;"></p>  
      
    <!-- Script to set submit formMethod Property -->
    <script>  
        function myGeeks() {  
            var btn = document.getElementById("Geeks").formMethod 
                    = "Get"; 
                      
            document.getElementById("GFG").innerHTML 
                    = "The value of the formMethod attribute" 
                      + " was changed to " + btn;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入Submit formMethod属性支持的浏览器如下:

  • 谷歌浏览器
  • Internet Explorer 10.0
  • Firefox
  • Opera
  • Safari


相关用法


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