ceshi1.js
477 Bytes
Page({
data: {
url:'http://www.henkuai.com/thread-11714-1-1.html'
},
show: function(){
let that=this
wx.setClipboardData({
data: that.data.url,
success(){
that.setData({
url:'http://www.henkuai.com/thread-11714-1-1.html'
})
console.log('success')
}
})
wx.getClipboardData({
success(res){
console.log(res.data)
}
})
wx.showToast({
title: '复制成功'
})
}
})