源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> </head> <body> <h2>发送e-mail到someone@example.com:</h2> <form action="mailto:someone@example.com" method="post" enctype="text/plain"> 姓名:<br> <input type="text" name="name"><br> E-mail:<br> <input type="text" name="mail"><br> 内容:<br> <input type="text" name="comment" size="50"><br><br> <input type="submit" value="发送"> <input type="reset" value="重写"> </form> </body> </html>
运行结果