美文网首页
微信小程序复制文字

微信小程序复制文字

作者: xsmile21 | 来源:发表于2022-08-03 11:42 被阅读0次

    需求:复制运单编号
    方法:wx.setClipboardData


    <view class="prize" wx:for="{{ prizeList }}" wx:key="id">
        ......
        <view class="copy" bindtap="copy" data-title="{{ item.waybillNumber }}" wx:if="{{ item.waybillNumber }}">复制</view>
    </view>
    
    // 复制
    copy(e) {
      let query = e.currentTarget.dataset['title'];
      console.log(query);
      wx.setClipboardData({
          data: query,
          success: function (res) {
             wx.showToast({
                title: '复制成功',
                icon: 'none',
                mask: 'true'
             })
          }
       })
    }
    

    相关文章

      网友评论

          本文标题:微信小程序复制文字

          本文链接:https://www.haomeiwen.com/subject/qtyywrtx.html