请教各位大神,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">
所以手機號碼不會被辨識為撥號連結
phone link有說明不能使用
*
和#
。if a URL contains the * or # characters, the Phone app does not attempt to dial the corresponding phone number.
嗯~過濾了;而且不辨識為電話;
通常都會加上這個
所以手機號碼不會被辨識為撥號連結