HTML DOM 输入提交 formAction 属性


HTML DOM 提交 formAction 属性用于设置或获取该表单的 formaction 属性值。formaction 属性指定单击提交按钮后要向其发送数据的 URL。formAction 属性值将覆盖与 <form> 元素关联的 action 属性值。

语法

以下为语法 −

设置 formAction 属性 −

submitObject.formAction = URL

其中,该 URL 可以是绝对 URL 也可以是相对 URL。

示例

我们来看一个提交 formAction 属性的示例 −

<!DOCTYPE html>
<html>
<body>
<h1>Submit formAction Property</h1>
<form id="FORM_1" style="border:solid 2px green;padding:2px">
UserName: <input type="text" id="USR"> <br>
Location: <input type="text" id=“Loc”> <br><br>
<input type="submit" id="SUBMIT1" formaction="/New_page.php">
</form>
<p>Change the formAction attribute value to /Sample_page.php by clicking the below
button</p>
<button onclick="formActChange()">CHANGE</button>
<p id="Sample"></p>
<script>
   function formActChange() {
      document.getElementById("SUBMIT1").formAction="/Sample_page.php";
      document.getElementById("Sample").innerHTML = "The formaction attribute value is
      now 'Sample_page.php'";
   }
</script>
</body>
</html>

输出

这将产生以下输出 −

单击 CHANGE 按钮 −

更新于: 18-Jun-2020

90 次观看

开启您的 职业生涯

通过完成课程获得认证

开始
广告