欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

H5调用系统自带短信功能并且填充内容

程序员文章站 2022-03-03 18:37:36
...

最近做了一个功能需要通过html代码调用手机的系统自带的短信功能,采用和tel:手机号码一样的方式使用sms:10086来处理:

  copyToPaste(item) {
    try {
      if (item.style === 'phone') {
        this.presentAlertConfirm(item.value);
      } else if (item.style === 'weixin') {
        this.copyUrl(item.value);
        // 唤起微信
      } else if (item.style === 'message') {
        // 复制将要发送的短信信息
        // this.copyUrl(item.value);
        const nickName = localStorage.getItem('currentNickName') ? localStorage.getItem('currentNickName') : '';
        // sms:10086?body=消息内容
        document.location.href = "sms:" + item.value + '?body=消息内容' + nickName ;
      }
    } catch (error) {
      console.log('error:' + JSON.stringify(error));
    }
  }