애플릿의 클릭으로 텍스트 복사

3235 단어

버튼을 클릭하여 텍스트 복사

<view class="page">
  <view class="content">
    <label>{
     {
     name}}<text>{
     {
     ids}}</text></label>
    <button bindtap='copyBtn'> </button>
  </view>
</view>
Page({
     
  data: {
     
    name:" :",
    ids:"21435643645765867879"
  },
   //  
  copyBtn: function (e) {
     
    console.log(e)
    var that = this;
    wx.setClipboardData({
     
     // 
      data: that.data.name + that.data.ids,
      success: function (res) {
     
        wx.showToast({
     
          title: ' ',
        });
      }
    });
  },
  })

좋은 웹페이지 즐겨찾기