I want to call directly, do not showing prompt.
For me I used html5 <a href>
, don't know how to set it as directly call when I click the button
call.html
<div padding class="about-bottom">
<a ion-button color="light" href="tel:1800889958">
立即拨打
</a>
</div>
call.scss
.about-bottom {
text-align: center;
background-color: #F44336;
}
call.ts
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
@Component({
selector: 'page-call',
templateUrl: 'call.html'
})
export class CallPage {
constructor(public navCtrl: NavController) {
}
}