标签:oca 调用 手机号 location 电话 ext ref color android
android调用如下:
在config.xml中添加
<access origin="tel:*" launch-external="yes" />
在页面上
<button (click)="call()">拨打电话</button> //href中需要填写tel:手机号码
在ts
call(){
document.location.href="tel:17724278927"
}
标签:oca 调用 手机号 location 电话 ext ref color android
原文地址:https://www.cnblogs.com/zhichong/p/10213958.html