Edge浏览器自动给数字、IP地址加下划线。
尤其是IP地址,不仔细看的话,以为是加了一个链接,实际不是,点击这个链接,会弹出一个对话框,让你选中打开方式。
这种情况下,一般是Edge认为是识别到了一个电话号码。
解决方法是在HTML文件中增加下面一行:
<meta name="format-detection" content="telephone=no">
类似的选项共有3个。
- meta name=”format-detection” content=”telephone=no”
- meta name=”format-detection” content=”email=no”
- meta name=”format-detection” content=”adress=no”
telephone
主要作用是是否设置自动将你的数字转化为拨号连接
telephone=no 禁止把数字转化为拨号链接
telephone=yes 开启把数字转化为拨号链接,默认开启
email
告诉设备不识别邮箱,点击之后不自动发送
email=no 禁止作为邮箱地址
email=yes 开启把文字默认为邮箱地址,默认情况开启
adress
adress=no 禁止跳转至地图
adress=yes 开启点击地址直接跳转至地图的功能, 默认开启
Tags:
dge edge telephone
dge edge telephone