微信小程序复制文本到剪切板

Posted 认真生活、快乐工作 - 马云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序复制文本到剪切板相关的知识,希望对你有一定的参考价值。

html

<view class="order_info_text">{{orderData.order_num}} <text class="copy" data-order_num="{{orderData.order_num}}" bind:tap="copy">复制</text> </view>

js

copy: function ({
  currentTarget: {
    dataset: { order_num }
  }
}) {
  console.log(order_num);
  wx.setClipboardData({
    //准备复制的数据
    data: order_num,
    success: function (res) {
      wx.showToast({
        title: \'复制成功\',
      });
    }
  });
}

以上是关于微信小程序复制文本到剪切板的主要内容,如果未能解决你的问题,请参考以下文章