Html5移动应用程序vs电子邮件&短信

时间:2012-10-13 01:59:51

标签: android ios html5 email sms

有没有办法从html5网页显示本机电子邮件/短信发送界面? 或者我应该创建我的原生适配器并在每次需要发送时调用它?

1 个答案:

答案 0 :(得分:0)

我不确定这是否是你想要的,但是如果你只想显示这些的原生接口,这应该可以解决问题。

对于电子邮件,请使用以下内容:

<a href="mailto:user@example.com">E-mail user@example.com</a>

电话号码:

<a href="tel:1234567890">Call 1234567890</a>

对于短信:

<a href="sms:1234567890">Send a message to 1234567890</a>

如果您愿意,还可以为此电子邮件添加主题和/或正文:

<a href="mailto:user@example.com?subject=Story&body=Once upon a time...">user@example.com</a>

在短信中加入一个正文:

<a href="sms:1234567890?body=Hello">Send Hello via SMS to 1234567890</a>