0

我正在制作一个用户可以输入的联系表单,然后当他们单击提交时,它会打开带有他们输入的 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> 
4

1 回答 1

0

由于您没有另外指定,因此您的表单使用默认的 enctype “发送” application/x-www-form-urlencoded

将属性添加enctype="text/plain"到您的表单元素。

于 2013-03-21T15:10:25.170 回答