如何在移动应用程序中单击/选择号码时显示设备拨号盘号码

时间:2016-04-01 10:33:30

标签: jquery html css3 numbers phone-call

我们开发混合移动应用程序。

在此应用程序中单击/选择数字时,它应显示在设备的拨号盘上。

如何执行我们必须遵循的步骤?

if
$(function(){
    if(navigator.userAgent.match(/(iPhone|Android.*Mobile)/i))
    {
        $('a[data-tel]').each(function(){
            $(this).prop('href', 'tel:' + $(this).data('tel'));
        });
    }
})

这是我的应用链接
                                                                               http://desktop-tsrno5e:10080/_MobileBrowserSimulator/index.html?webpage=/datepicker/apps/services/preview/ww/android/1.0/&platform=android

1 个答案:

答案 0 :(得分:0)

只需使用.click()功能

即可
$(function(){
  if(navigator.userAgent.match(/(iPhone|Android.*Mobile)/i)) {
    $('a[data-tel]').click(function(){
       $(this).prop('href', 'tel:' + $(this).data('tel'));
    });
  }
})