当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML formaction属性用法及代码示例


HTML formaction属性用于指定将表单数据发送到的位置。提交表单后,将调用formaction属性。提交表单后,表单数据将发送到服务器。它覆盖了<form>元素的action属性的函数。

用法:

<formaction="URL">

属性值:它包含一个单值URL,用于指定提交表单后将数据发送到的文档的URL。
URL的可能值为:

  • absolute URL:它指向页面的完整地址。例如:“ www.geeksforgeeks.org/data-structure”
  • relative URL:它用于指向网页内的文件。例如:gfg.php

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML formAction Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        HTML 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>

输出:



支持的浏览器:下面列出了受formaction Attribute支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • 苹果Safari
  • Opera




相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | formaction Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。