ionic 打电话

1、在项目config.xml中添加

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

2、html

<a href="tel:10086">打电话</a>
<button class="button button-balanced button-phone" ng-click="call(10086)"><i class="icon ion-ios-telephone-outline"></i></button>

3、controller

app.controller('MessageCtrl', function ($scope, $state, $window) {
    $scope.call = function (phone) {
        $window.location.href = "tel:" + phone;
    }
});

猜你喜欢

转载自blog.csdn.net/kingcruel/article/details/69946566