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


HTML <input> formaction屬性用法及代碼示例


HTML <input> formaction屬性用於指定將表單數據發送到的位置。提交表單後,將調用formaction屬性。提交表單後,表單數據將發送到服務器。它覆蓋了<form>元素的action屬性的函數。

用法:

<input formaction="URL"> 

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


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

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML <input> formAction Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        HTML  <input> formAction Attribute  
    </h2> 
  
    <form action="#"
          method="get"
          target="_self"> 
        
        <input type="text" 
               id="Geeks"
               name="myGeeks" 
               value="geeksforgeeks" 
               formTarget="_blank" 
               formMethod="post" 
               formAction="test.php"> 
        <input type="submit"> 
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:HTML | Java支持的瀏覽器。 <input> formaction屬性如下:

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


相關用法


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