我想要主题中的断线。我需要的输出是:
I will get back to you soon
Thanks and Regards
Saurav Kumar
添加%0D%0A
到您要在 URL 上对换行符进行编码的任何位置。
%0D
是回车符%0A
是换行符这是 windows 机器上的新行序列,虽然在 linux 和 macs 上不一样,但应该适用于两者。
如果您想在实际的 javascript 中换行,请使用\n
转义序列。
onClick="parent.location='mailto:er.saurav123@gmail.com?subject=Thanks for writing to me &body=I will get back to you soon.%0D%0AThanks and Regards%0D%0ASaurav Kumar'
这个给你 ;-)
<script type="text/javascript">
alert("Hello there.\nI am on a second line ;-)")
</script>
我面临着同样的问题。对于我的解决方案,我添加br
了 2 个括号 < > 括在双引号中,并在前面和后面加上 + 符号:
+"<br>"+
在您的浏览器中试试这个,看看它在我的 Internet Explorer 中确实有效。
alert("I will get back to you soon\nThanks and Regards\nSaurav Kumar");
或%0D%0A
在网址中使用
+ "<br>" +
在您想要中断的每个点之间使用可能对您有用。
例如
var numberTimes = 5;
for(var times = 0; times < numberTimes; times++) {
document.write("Number of times executed: " + times + " " + "<br>");
}
document.write("It's over.")