话不多说
调起手机短信
window.location.href = ‘sms://‘
调起手机微信客户端
window.location.href = ‘weixin://‘
调起手机电话
window.location.href = ‘tel://‘
短信如果需要指定收信人和短信内容的话
window.location.href = ‘sms:‘ + phone + ‘?body=‘ + body
phone是收信人电话 body是短信内容因为只有安卓机所以没测试 ios系统的
说的是要把 ? 换成 & 需要的可以自行测试
电话指定号码的话
window.location.href = ‘tel:‘ + phone
至此做下记录后续说不定还得用。
2020-03-17 13:43:24