html⽹页调⽤⼿机-js拨打⼿机电话-web拨打⼿机电话其实,实现web端拨打⼿机电话是很简单的。只需要利⽤href的属性⼀⾏代码即可实现的效果了。话不多说直接上代码!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>html拨打⼿机电话</title>
</head>
<body>
<a href="tel:159********">点击即可</a>
<button onclick="window.location.href='tel:159********'">点击即可</button>
<button onclick="tel()">判断是否</button>
</body>
<script>
function tel(){
html href属性if(confirm("你确定要拨打此通电话嘛?")){
console.log("点击了确定");
window.location.href='tel:159********'
}else{
console.log("点击了取消");
}
}
</script>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论