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 に答える