我正在制作一个用户可以输入的联系表单,然后当他们单击提交时,它会打开带有他们输入的 Outlook。问题是输出真的很乱。它输出如下:
name=John+Smith&email=I+am+contacting+you&comment=example+text+here
我想输出更像:
name=John Smith email=I am contacting you comment=example text here
使用此 HTML5 代码是否可行:
<form method="post" name="contact" action="mailto:myemail@gmail.com">
<p>
<label>Name</label>
<input name="name" value="Your Name" input type="text" size="50" />
<label>Email</label>
<input name="email" value="Your Email" input type="text" size="50" />
<label>Your Comments</label>
<textarea rows="5" cols="5" name="comment"></textarea>
<br />
<input class="button" input type="submit" />
</p>
</form>