1. meta标签中有一个格式检测format-detection,主要用来检测html中的一些格式,主要有以下几个配置:

<meta name="format-detection" content="telephone=no">主要设置是否自动将你的数字转化为拨号连接,默认yes
<meta name="format-detection" content="email=no">主要设置设备是否识别邮箱,点击之后是否自动发送,默认yes
<meta name="format-detection" content="adress=no">设置是否点击地址直接跳转至地图,默认yes

2.在需要拨打电话的地方:

<a href="tel:00000000">00000000</a>

3.在需要发送短信的地方:

<a href="sms:00000000">发短信至00000000</a>