微信小程序——复制文字

矫情吗;* 2022-01-29 14:34 618阅读 0赞

查看微信文档 剪贴板API:https://developers.weixin.qq.com/miniprogram/dev/api/wx.setClipboardData.html
https://developers.weixin.qq.com/miniprogram/dev/api/wx.getClipboardData.html
分别是设置/获取复制的内容

栗子:

  1. <button catchtap='copy'>复制文字</button>
  2. copy: function(e) {
  3. var that = this;
  4. var text = that.data.text
  5. wx.setClipboardData({
  6. data: text,
  7. success: function(res) {
  8. wx.getClipboardData({
  9. success: function(res) {
  10. console.log('复制内容为', res.data)
  11. }
  12. })
  13. },
  14. })
  15. },

发表评论

表情:
评论列表 (有 0 条评论,618人围观)

还没有评论,来说两句吧...

相关阅读