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


HTML Button formMethod用法及代码示例


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

用法:

  • 它返回Button的formMethod属性。
    ButtonObject.formMethod
  • 它用于设置Button的formMethod属性。
    ButtonObject.formMethod = get|post

属性值:


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

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

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Button formMethod Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        HTML DOM Button formMethod Property  
    </h2> 
  
    <form action="#" method="get" target="_self"> 
        <button type="submit"
                id="Geeks"
                name="myGeeks"
                value="Submit @ geeksforgeeks"
                formenctype="multipart/form-data"
                formTarget="_blank"
                formMethod="Get"
                Formnovalidate> 
            Submit </button> 
    </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 return formMethod Property -->
    <script> 
        function myGeeks() { 
            var btn = document.getElementById("Geeks").formMethod; 
            document.getElementById("GFG").innerHTML = btn; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Button formMethod Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        HTML DOM Button formMethod Property  
    </h2> 
  
    <form action="#" method="get" target="_self"> 
        <button type="submit" 
                id="Geeks"
                name="myGeeks"
                value="Submit @ geeksforgeeks"
                formenctype="multipart/form-data"
                formTarget="_blank" 
                formMethod="Get" 
                Formnovalidate> 
            Submit </button> 
    </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 return formMethod Property -->
    <script> 
        function myGeeks() { 
            var btn = document.getElementById( 
              "Geeks").formMethod = "post"; 
            
            document.getElementById("GFG").innerHTML = 
              "The value of the formmethod attribute" + 
              " was changed to " + btn; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了HTML DOM Button formMethod属性支持的浏览器:

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


相关用法


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