h5页面打包成app,长串数据会被识别成手机号

<meta name="format-detection" content="telephone=no"> 
// 当然类似其他的email、address、date 默认也会被识别转换,禁止的方式如下: 
<meta name="format-detection" content="email=no"> 
<meta name="format-detection" content="address=no"> 
<meta name="format-detection" content="date=no"> 
// 其实也可以综合写在一起,如下: 
<meta name="format-detection" 
content="telephone=no,date=no,address=no,email=no,url=no"/>
 

h5页面打包成app,长串数据会被识别成手机号