赞
踩
思路:使用uniapp的uni.setClipboardData(设置系统剪贴板的内容)和uni.getClipboardData(获取系统剪贴板内容)
- <template>
- <view> 要复制的内容:{{qq}}</view>
- <view class="iconfont iconfuzhi" @tap="copyContent(qq)"></view>
- </template>
-
-
- <script>
- export default {
- data() {
- return {
- qq: '1111',
- };
- },
- methods:{
- copyContent(data) {
- uni.setClipboardData({
- data,
- success: function() {
- uni.getClipboardData({
- success: function(res) {
- uni.showToast({
- title: "复制成功",
- });
- }
- });
- }
- });
- },
- }
- }
- </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。