ใช้แอ็ตทริบิวต์ action เพื่อเพิ่มไฟล์ ซึ่งคุณต้องการเข้าถึงหลังจากคลิก Submit ปุ่ม. คุณยังสามารถเพิ่มอีเมลเพื่อส่งข้อมูลไปยังรหัสอีเมลนั้นได้
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อกำหนดตำแหน่งที่จะส่งข้อมูลแบบฟอร์มเมื่อส่งแบบฟอร์มใน HTML -
<!DOCTYPE html> <html> <body> <h2>Student Contact Form</h2> <form action = "mailto:[email protected]" method = "post" enctype = "text/plain"> Student Name:<br><input type = "text" name = "sname"> <br> Student Subject:<br><input type = "text" name = "ssubject"><br> <input type = "submit" value = "Send"> </form> </body> </html>