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


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