使用操作屬性新增文件,點擊提交按鈕後您想要到達的位置。您也可以新增電子郵件以將資料傳送到該電子郵件 ID。
您可以嘗試執行以下程式碼來設定當表單資料傳送到何處時表單以 HTML 形式提交 -
<!DOCTYPE html> <html> <body> <h2>Student Contact Form</h2> <form action = "mailto:emailid@example.com" 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>
以上是如何在HTML中指定表單提交時要傳送表單資料的位置?的詳細內容。更多資訊請關注PHP中文網其他相關文章!