html网页调用手机拨打电话-js拨打手机电话-web拨打手机电话

其实,实现web端拨打手机电话是很简单的。只需要利用href的属性一行代码即可实现拨打电话的效果了。话不多说直接上代码!

<html>
	<head>
		<meta charset="utf-8">
		<title>html拨打手机电话title>
	head>
	<body>
		<a href="tel:15993336602">点击即可拨打电话a>
		<button onclick="window.location.href='tel:15993336602'">点击即可拨打电话button>
		<button onclick="tel()">判断是否拨打电话button>
	body>
	<script>
		function tel() {
			if (confirm("你确定要拨打此通电话嘛?")) {
				console.log("点击了确定");
				window.location.href='tel:15993336602'
			} else {
				console.log("点击了取消");
			}
		}
	script>
html>

你可能感兴趣的:(html,web,app,html5)