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