uniapp小程序中,有时需要复制内容到剪贴板,可以使用以下方法实现点击按钮复制至手机剪贴板。
<template> <view> <button type="default" @click="copy">复制</button> <view> </template>
复制方法代码:
<script> export default { methods: { copy(){ wx.setClipboardData({ data: '我是文字', success: function(res) { wx.getClipboardData({ success: function(res) { wx.showToast({ title: '复制成功' }); } }); } }); } } } </script>
文章评论(0)