微信小程序——長按複製、一鍵複製

wxml:this

訂單號:<text selectable='true' bindlongtap='copy' >{{OrderModel.OrderNo}}</text><button bindtap="copyBtn">一鍵複製</button></view>spa

 

長按複製 js:xml

/**
* 長按複製
*/
copy: function (e) {
var that = this;
console.log(e);
wx.setClipboardData({
data: that.data.OrderModel.OrderNo,
success: function (res) {
wx.showToast({
title: '複製成功',
});
}
});
},

ip

一鍵複製 js:it

/**
* 一鍵複製
*/
copyBtn: function (e) {
var that = this;
wx.setClipboardData({
data: that.data.OrderModel.OrderNo,
success: function (res) {
wx.showToast({
title: '複製成功',
});
}
});
},

io

相關文章
相關標籤/搜索