标签: html mobile
我想在我的网站上添加一些代码,它会自动在访问者拨号器中输入一个号码,或者在访问者使用移动设备时拨打一个号码。
我该怎么做?
答案 0 :(得分:0)
您可以在页面中使用javascript来执行此操作。
document.onload = function calldialor() { window.open('tel:555-555-5555'); }
您应将此代码放在<script>代码中。
<script>