【小程序】小程序点击复制

wxml

<view class="linkcopy">
	<view bindtap='copy' data-item="{{item.name}}">{{item.name}}</view>
</view>

js

copy: function (e) {
	console.log(e)
		wx.setClipboardData({
			data: e.currentTarget.dataset.item,
			success: function (res) {
				wx.getClipboardData({
					success: function (res) {
						wx.showToast({
							title: '复制成功'
									})
								}
							})
						}
					})
				},

你可能感兴趣的:(小程序,小程序)