HTML标记属性值中的换行符

时间:2012-05-08 16:06:33

标签: html mailto line-breaks subject

如何在HTML属性值中插入换行符,如下所示:

<href="mailto:info@example.com?subject=TestMail&body=Please enter the following details.
Name
Email
Mob No">

当用户回复时,正文部分应显示如下:

Please enter the following details.
1. Name
2. Email
3. Mob No

我尝试使用<br>标记,但会显示它们。

1 个答案:

答案 0 :(得分:29)

换行符应以URL编码为%0D%0A

您的mailto将如下所示:

    <a href="mailto:xxx@example.com?subject&body=1.Name%0D%0A2.Email">mailme</a>

来自http://www.cubetoon.com/2008/how-to-enter-line-break-into-mailto-body-command/

的信息