我们开发混合移动应用程序。
在此应用程序中单击/选择数字时,它应显示在设备的拨号盘上。
如何执行我们必须遵循的步骤?
if
$(function(){
if(navigator.userAgent.match(/(iPhone|Android.*Mobile)/i))
{
$('a[data-tel]').each(function(){
$(this).prop('href', 'tel:' + $(this).data('tel'));
});
}
})
答案 0 :(得分:0)
只需使用.click()功能
即可$(function(){
if(navigator.userAgent.match(/(iPhone|Android.*Mobile)/i)) {
$('a[data-tel]').click(function(){
$(this).prop('href', 'tel:' + $(this).data('tel'));
});
}
})