ความหมายและการใช้งาน
formaction แอตทริบิวต์ระบุว่าจะส่งแบบฟอร์มข้อมูลเมื่อส่งแบบฟอร์ม คุณลักษณะนี้จะแทนที่รูปแบบของ action แอตทริบิวต์
formaction แอตทริบิวต์เป็นเพียงใช้สำหรับ inputs/buttons กับ type="submit"
นำไปใช้กับ
formaction แอตทริบิวต์ที่สามารถใช้กับองค์ประกอบต่อไปนี้:
องค์ประกอบ | คุณลักษณะ |
---|---|
<button> | formaction |
<input> | formaction |
ตัวอย่าง
Button ตัวอย่าง
รูปแบบที่มีสองปุ่มส่ง ปุ่มแรกส่งส่งข้อมูลแบบ "demo_form.asp" และส่งที่สองที่จะ "demo_admin.asp" :
<form action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit">Submit</button><br>
<button type="submit" formaction="demo_admin.asp">Submit as admin</button>
</form>
ลองตัวเอง» Input ตัวอย่าง
รูปแบบ HTML ที่มีสองส่งปุ่มกับการกระทำที่แตกต่างกัน
<form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit"><br>
<input type="submit" formaction="demo_admin.asp" value="Submit as admin">
</form>
ลองตัวเอง» สนับสนุนเบราว์เซอร์
formaction
แอตทริบิวต์มีการสนับสนุนเบราว์เซอร์ต่อไปนี้สำหรับแต่ละองค์ประกอบ:
ธาตุ | |||||
---|---|---|---|---|---|
button | 9.0 | 10.0 | 4.0 | 5.1 | 10.6 |
input | 9.0 | 10.0 | 4.0 | 5.1 | 10.6 |