redd 發表於 2019-1-30 14:45:24

HTML5 : format-detection

format-detection 翻译成中文的意思是 “格式检测”,顾名思义,它是用来检测 html 里的一些格式的,那关于 meta 的 format-detection 属性主要是有以下几个设置:
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="date=no" />
<meta name="format-detection" content="email=no" />
<meta name="format-detection" content="address=no"/>
也可以连写:
<meta name="format-detection" content="telephone=no,date=no,email=no,address=no" />

頁: [1]
查看完整版本: HTML5 : format-detection