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
相關用法
- HTML <button> formaction屬性用法及代碼示例
- HTML <input> formaction屬性用法及代碼示例
- HTML Input Submit formAction用法及代碼示例
- HTML Button formAction用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML poster屬性用法及代碼示例
- HTML Class屬性用法及代碼示例
- HTML style屬性用法及代碼示例
- HTML oninvalid用法及代碼示例
- HTML <select> autocomplete屬性用法及代碼示例
- HTML <table> bgcolor屬性用法及代碼示例
- HTML onsubmit用法及代碼示例
- HTML onunload用法及代碼示例
- HTML srcdoc屬性用法及代碼示例
- HTML Marquee truespeed用法及代碼示例
- HTML onkeyup用法及代碼示例
- HTML ondrop用法及代碼示例
- HTML <td> abbr屬性用法及代碼示例
- HTML onpageshow用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | formaction Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。