當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。