HTML <button> formaction屬性用於指定將表單數據發送到何處。提交表單後,將調用formaction屬性。提交表單後,表單數據將發送到服務器。它覆蓋了<form>元素的action屬性的函數。
用法:
<button type="submit" formaction="URL">
屬性值:它包含單個值URL,該URL用於指定提交表單後將數據發送到的文檔的URL。
URL的可能值為:
- 絕對網址:它指向頁麵的完整地址。例如:www.geeksforgeeks.org/data-structure
- 相對網址:它用於指向網頁中的文件。例如:gfg.php
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML <Button> formAction Attribute
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML <button> formAction Attribute
</h2>
<form action="#" method="get" target="_self">
<input type="submit"
id="Geeks"
name="myGeeks"
value="Submit @ geeksforgeeks"
formTarget="_blank"
formMethod="post"
formAction="test.php">
</form>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML按鈕formaction屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML formaction屬性用法及代碼示例
- HTML <input> formaction屬性用法及代碼示例
- HTML Button formAction用法及代碼示例
- HTML Input Submit formAction用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <button> formaction Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。