当前位置:   article > 正文

前端实现打电话、发短信邮件_前端发送短信功能

前端发送短信功能

1、利用a标签实现。

  1. //123456为示例号码
  2. <a href="tel:123456">拨打电话</a>
  3. <a href="sms:123456?body=duanxin">发送短信</a>
  4. <a href="mailto:123456@123456.com?subject=testing&body=youjian">发送邮件</a>

2、在js代码中(有逻辑判断的情况)实现。

  1. fn() {
  2. window.location.href = "tel:123456"; //拨打电话
  3. window.location.href = "sms:123456?body=duanxin"; //发送短信
  4. window.location.href = "mailto:123456@123456.com?subject=testing&body=youjian"; //发送邮件
  5. },
  1. fn() {
  2. const a = document.createElement("a");
  3. a.href = "tel:123456"; //拨打电话
  4. a.href = "sms:123456?body=duanxin"; //发送短信
  5. a.href = "mailto:123456@123456.com?subject=testing&body=youjian"; //发送邮件
  6. a.click();
  7. },

3、uni-app和微信小程序有封装好的方法

wx

  1. wx.makePhoneCall({
  2. phoneNumber: '1340000' //仅为示例,并非真实的电话号码
  3. })

 

uniapp

  1. uni.makePhoneCall({
  2. phoneNumber: '114' //仅为示例
  3. });

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/267582
推荐阅读
相关标签
  

闽ICP备14008679号