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


HTML Input Image formAction用法及代碼示例


HTML DOM中的輸入圖像formAction屬性用於設置或返回輸入圖像的formAction屬性的值。提交表單後,將調用formAction屬性。提交表單後,表單數據將發送到服務器。它覆蓋了<form>元素的action屬性的函數。

用法:

  • 它返回formAction屬性。
    imageObject.formAction
  • 它用於設置formAction屬性。
    imageObject.formAction = URL 

屬性值:它包含一個單值URL,該URL用於指定提交表單後將數據發送到的文檔的URL。


    URL的可能值為:
  • absolute URL:它指向頁麵的完整地址。例如:www.geeksforgeeks.org/data-structure
  • relative URL:它用於指向網頁中的文件。例如:gfg.php

返回值:它返回一個字符串值,該字符串值表示表單的URL。

範例1:本示例說明如何返回formAction屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image formAction 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
      GeeksforGeeks  
    </h1> 
  
    <h4> 
      DOM Input Image formAction Property</h4> 
    <button onclick="my_geek()"> 
        <input id="myImage" type="image" formAction="test.php" 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").formAction; 
            document.getElementById( 
                "Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image formAction 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
     GeeksforGeeks  
    </h1> 
  
    <h4> 
     DOM Input Image formAction Property 
    </h4> 
    <button onclick="my_geek()"> 
        <input id="myImage" type="image" formAction="test.php" 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").formAction = "www.geeksforgeeks.org"; 
            document.getElementById( 
                "Geek_h").innerHTML = "The formAction was changed to " 
                 + txt; 
        } 
    </script> 
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:下麵列出了HTML DOM輸入圖像formAction屬性支持的瀏覽器:

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


相關用法


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