gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 06:07:53 25 4
gpt4 key购买 nike

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

在此应用程序中,当点击/选择号码时,它应该会显示在设备的拨号盘上。

怎么做我们必须遵循哪些步骤?

$(function(){
if(navigator.userAgent.match(/(iPhone|Android.*Mobile)/i))
{
$('a[data-tel]').each(function(){
$(this).prop('href', 'tel:' + $(this).data('tel'));
});
}
})
 <table>
<tr><td style="padding:2px">Traiff</td><td style="padding:8px"><a data-tel="974-4433665588" href="tel:974-4433665588" data-rel="external" style="color:#333946 !important">974-4433665588</a></td></tr>
<tr><td style="padding:2px">Divil</td><td style="padding:8px"><a data-tel="974-4433665588" style="color:#333946 !important">974-4433665588</a></td></tr>
</table>

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

最佳答案

只需使用 .click()功能

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

关于jquery - 在移动应用程序中单击/选择号码时如何在号码上显示设备拨号盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36354092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com