我想使用HTML5直接在电子邮件中发布职业表格。要直接在我的电子邮件ID上发布表单,我使用语法
<form action:"mailto:web@domain.com" method="post" enc type="text/plain">
</form>
但它无法正常工作。请告诉我如何将表单直接与电子邮件ID链接。
答案 0 :(得分:0)
尝试使用
<form action="mailto:web@domain.com" method="post" enctype="text/plain">
而不是
<form action:"mailto:web@domain.com" method="post" enc type="text/plain">
: - )
答案 1 :(得分:0)
如下所示:
<form action="mailto:myforms@mydomain.com" enctype="text/plain" onsubmit="location.href='thanks.html';" >
参考: http://www.html-form-guide.com/email-form/email-form-mailto.html
答案 2 :(得分:0)
尝试
<form action="mailto:web@domain.com" method="post" enctype="text/plain">
</form>
你刚写错了enctype。希望这会有所帮助:)