扫码关注官方订阅号
请教各位大神,IOS的安全策略是不是不允许直接拨打带特殊符号的电话,比如href="tel:*9204732081115#"这在IOS的效果是点击了拨打之后就没反应了?
但是如果href="tel:正常的号码"则可以跳到拨号页。
认证0级讲师
phone link有说明不能使用*和#。 if a URL contains the * or # characters, the Phone app does not attempt to dial the corresponding phone number.
*
#
if a URL contains the * or # characters, the Phone app does not attempt to dial the corresponding phone number.
嗯~过滤了;而且不识别为电话;
一般都会加上这个
<meta name="format-detection" content="telephone=no">
所以手机号码不会被识别为拨号链接
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
phone link有说明不能使用
*
和#
。if a URL contains the * or # characters, the Phone app does not attempt to dial the corresponding phone number.
嗯~过滤了;而且不识别为电话;
一般都会加上这个
所以手机号码不会被识别为拨号链接