1. h5的實現方式
首先加個允許meta
<meta name="format-detection" content="telephone=yes"/>
然后需要有點擊的按鈕或者需要發短信的按鈕
<a href="tel:0000-88888888">0000-88888888</a> 或者 <a href="sms:13111111111">13111111111</a>
2. taro實現多端(支持微信小程序,H5,React Native )
示例代碼
Taro.makePhoneCall({
phoneNumber: '13111111111' //僅為示例,並非真實的電話號碼
})