在 HTML 中提交表单时,如何指定将表单数据发送到何处?
使用操作属性来添加文件,在单击“提交”按钮后,这是你需要发送到的位置。您还可以添加电子邮件,将数据发送到该电子邮件 ID。
示例
您可以尝试运行以下代码,以在 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>
广告