使用操作屬性添加文件,點擊提交按鈕后您想要到達的位置。您還可以添加電子郵件以將數據發送到該電子郵件 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中指定表單提交時要發送表單數據的位置?的詳細內容,更多請關注www.92cms.cn其它相關文章!