0

i have a little problem, i have developing html, css, javascript application for iphone and i have a form that submitting mails like:

<form action="mailto:some email" method="post" enctype="text/plain">
name:
phone:
email:
comments:
</form>

and when i click send, iphone email application opening with all the details, but all the details converting to gibberish (all the text is in hebrew). how can i manage the details remain in hebrew and not converting to gibberish in the iphone email app?

4

2 回答 2

1

mailto:表单中的 URI太不可靠,无法在 WWW 上使用。改用 HTTP URL 并从您的服务器发送电子邮件(这将需要某种形式的服务器端编程,但具体取决于您选择的编程语言)。

于 2013-08-08T13:53:57.970 回答
-1

在表单声明中使用 UTF-8 编码类型:

enctype="multipart/form-data;charset=UTF-8"
于 2013-08-08T13:52:50.013 回答