简体   繁体   中英

Mobile redirect/forward to tel://

I am trying to understand why the below works on desktop but not via android mobile:

<script>
window.location.replace("tel://023222244546");
</script>

I have tried many redirects but none are working on mobile device. I know with href on click it would work but I am trying to achieve this onload

Remove the "//"

<script>
window.location.replace("tel://023222244546");
</script>

see https://tools.ietf.org/html/rfc3966#section-8

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM