android调用如下:

在config.xml中添加

<access origin="tel:*" launch-external="yes" />

在页面上

<button (click)="call()">拨打电话</button> 
//href中需要填写tel:手机号码

在ts

call(){
      document.location.href="tel:17724278927"
  }

相关文章:

  • 2022-12-23
  • 2021-08-11
  • 2021-08-14
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2021-10-14
  • 2021-06-01
猜你喜欢
  • 2021-08-11
  • 2022-12-23
  • 2021-10-01
  • 2021-12-07
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
相关资源
相似解决方案