标签: javascript encodeuricomponent
我在我的javascript中按照推荐的mailto:solution here进行了编写mailto:指令,如下所示:
window.location.href = "mailto:?subject=test&body=" + encodeURIComponent( 'test' + '\r\n' + 'test' );
但是,在两个本地邮件客户端 - Outlook和iOS邮件中 - 它会在新行之前产生额外的空格字符:
test test
如何防止发生这种额外空间?