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


HTML Input Image formMethod用法及代碼示例


HTML DOM輸入圖像formMethod屬性語法:用於設置或返回輸入圖像的表單方法屬性的值。 formMethod屬性用於指定提交表單時用於發送數據的HTTP方法。 HTTP方法有兩種,即GET和POST。此屬性覆蓋<form>元素的method屬性。

用法:

  • 它返回Input Image formMethod屬性。
    imageObject.formMethod
  • 它用於設置Input Image formMethod屬性。
    imageObject.formMethod = get|post

屬性值:


  • GET:在GET方法中,提交表單後,表單值將在新瀏覽器選項卡的地址欄中可見。
  • POST:在post方法中,提交表單後,表單值將在新瀏覽器選項卡的地址欄中不可見,因為它在GET方法中可見。

返回值:它返回一個字符串值,該字符串值表示提交表單時用於發送數據的HTTP方法。

範例1:本示例說明了如何返回Input Image formMethod屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Image formMethod  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
    <h2>DOM Input Image formMethod</h2>  
    <button onclick="my_geek()">  
        <input id="myImage"
            type="image" 
            formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
            alt="Submit"
            width="48" 
            height="48"  formMethod="post"formNoValidate>  
    </button>  
      
    <h2 id="Geek_h" style="color:green;">  
  
        </h2>  
    <script>  
        function my_geek() {  
              
            // Return target, alt and height.  
            var txt = document.getElementById(  
            "myImage").formMethod; 
            document.getElementById(  
            "Geek_h").innerHTML = txt;  
        }  
    </script>  
</body>  
  
</html> 

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:本示例說明如何設置formMethod屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Image formMethod  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
    <h2>DOM Input Image formMethod Property</h2>  
    <button onclick="my_geek()">  
        <input id="myImage"
            type="image"
            formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
            alt="Submit"
            width="48"
            height="48" formMethod="post"formNoValidate>  
    </button>  
      
    <h2 id="Geek_h" style="color:green;">  
  
        </h2>  
    <script>  
        function my_geek() {  
              
            // Return target, alt and height.  
            var txt = document.getElementById(  
            "myImage").formMethod = "Get"; 
            document.getElementById(  
            "Geek_h").innerHTML =  
            "The value of the formMethod Attribute was changed to " 
             + txt;  
        }  
    </script>  
</body>  
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Input Image formMethod屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Image formMethod Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。