h5拨打电话

需要拨打电话的地方:

<a href="tel:10086">10086</a>

发短信:

<a href="sms:18688888888">发短信</a>

js调用

<button onclick="callphone()">10086</button>
<script>
    function callphone(){    
        window.location.href = "tel:10086";
    }
</script>

猜你喜欢

转载自blog.csdn.net/fu415037685/article/details/81301325