1. 谷歌chrome浏览器文案显示与别的浏览器不一致
谷歌浏览器的翻译功能导致,添加meta标签可以解决, <meta name="google" value="notranslate">
2. 禁止浏览器缓存
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
3. 让浏览器支持拨打电话的功能
<meta name="format-detection" content="telephone=yes" />
4. 浏览器禁止缩放
<meta name="viewport" content="width=device-width,initial-scale=1.0">