小程序复制功能

时间:2020-08-05 14:31:33   收藏:0   阅读:139

 1 <text data-data="111" bindtap=copyUrl>复制</text> 

 1   copyUrl(e) {
 2     const data = e.currentTarget.dataset.data
 3     wx.setClipboardData({
 4       data,//要复制的内容
 5       success: function (res) {
 6         wx.getClipboardData({
 7           success: function (res) {
 8             console.log(res.data, 876) // data
 9             wx.showToast({
10               icon: none,
11               title: 直播地址已复制,请打开浏览器查看。,
12             })
13           }
14         })
15       }
16     })
17   },

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!