我想在我的应用中拨打电话号码:
我知道tel:+1378987398
适用于iPod touch,因为有Facetime。 Mailto工作和weblinks也是如此。我已经安装了inapp浏览器。但是当我使用
$scope.goTo = function(url) {
window.open(url, '_system', 'location=yes');
}
并在html中
ng-click="goTo('tel:+136786387')"
也没有效果。
我的错误是什么?
这是代码:
config.xml中
<access origin="*"/>
<allow-intent href="tel:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="http://*/*"/>
<allow-navigation href="tel:*"/>
<allow-navigation href="http://*/*"/>
<allow-navigation href="https://*/*"/>
<access origin="mailto:*" launch-external="true" />
<access origin="tel:*" launch-external="true" />
在index.html中:
<meta name="format-detection" content="telephone=yes">
href:
<a href="tel:+397856001078">+39 7856001078</a>
它适用于浏览器..
任何帮助非常感谢!