ios5的safari浏览器的电话号码识别功能的禁用

来源:互联网 发布:手机淘宝怎么撤销举报 编辑:程序博客网 时间:2024/06/11 20:56

更详细的apple官方文档: 

https://developer.apple.com/library/safari/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html


在编写 HTML 时,有一个 meta 元素:<meta name="format-detection"/>这个页面有何用途呢?

当该 HTML 页面在手机上浏览时,该标签用于指定是否将网页内容中的手机号码显示为拨号的超链接。
在 iPhone 上默认值是:
<meta name="format-detection" content="telephone=yes"/>
如果你不希望手机自动将网页中的电话号码显示为拨号的超链接,那么可以这样写:
<meta name="format-detection" content="telephone=no"/>