本文介绍了在 tel://链接中插入暂停的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在创建一个供 iOS 用户使用的网络应用程序,但数据库中的某些电话号码需要添加扩展名.有没有办法修改 tel://
URL 方案以包含暂停或等待?
I'm creating a webapp to be used by iOS users, but some phone numbers in the database need to have extensions added on. Is there any way to modify the tel://
URL scheme to include a pause or wait?
提前致谢!
推荐答案
您可以使用 'p' 来暂停,例如 tel:12345678#123.将#"更改为p"(或逗号)将导致扩展暂停.
You can use 'p' to pause, for example, tel:12345678#123. By changing '#' to 'p' (or comma) will cause pause for extension.
tel:12345678#123 // original tel number
tel:12345678p123 // after changed for tel scheme
tel:12345678,123 // Use comma instead
这篇关于在 tel://链接中插入暂停的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!