我看到了这个插件 https://github.com/katzer/cordova-plugin-email-composer#examples 但我想知道是否有任何方法可以点击像调用函数一样的href href="tel:1234543"
它打开了允许您选择手机上的电子邮件应用程序的屏幕?因为我不需要在App中发送电子邮件。
谢谢
我看到了这个插件 https://github.com/katzer/cordova-plugin-email-composer#examples 但我想知道是否有任何方法可以点击像调用函数一样的href href="tel:1234543"
它打开了允许您选择手机上的电子邮件应用程序的屏幕?因为我不需要在App中发送电子邮件。
谢谢
当然,你可以使用mailto
<a href="mailto:name@email.com">Link text</a>
您可能必须将此行添加到config.xml
<access origin="mailto:*" launch-external="yes" />
当然,你可以使用mailto
<a href="mailto:name@email.com">Link text</a>
您可能必须将此行添加到config.xml
<access origin="mailto:*" launch-external="yes" />