这篇文章主要讲解了“Vuejs如何实现复制功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“vuejs如何实现复制功能”吧!vuejs实现复制功能的方法:1、创建一个copyComm.js的
这篇文章主要讲解了“Vuejs如何实现复制功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“vuejs如何实现复制功能”吧!
vuejs实现复制功能的方法:1、创建一个copyComm.js的文件;2、创建一个directives.js文件来注册所有的全局指令;3、通过“return{copyText:'...'}”实现复制即可。
本文操作环境:windows7系统、vue2.9.6版,DELL G3电脑。
vuejs怎么实现复制功能?
vue.js实现一键copy功能
1,首先建一个copyComm.js的文件
const vCopy = { // 名字爱取啥取啥 bind(el, { value }) { el.$value = value; // 用一个全局属性来存传进来的值,因为这个值在别的钩子函数里还会用到 el.handler = () => { if (!el.$value) { // 值为空的时候,给出提示,我这里的提示是用的 ant-design-vue 的提示,你们随意 console.log('无复制内容'); return; } // 动态创建 textarea 标签 const textarea = document.createElement('textarea'); // 将该 textarea 设为 readonly 防止 iOS 下自动唤起键盘,同时将 textarea 移出可视区域 textarea.readOnly = 'readonly'; textarea.style.position = 'absolute'; textarea.style.left = '-9999px'; // 将要 copy 的值赋给 textarea 标签的 value 属性 textarea.value = el.$value; // 将 textarea 插入到 body 中 document.body.appendChild(textarea); // 选中值并复制 textarea.select(); textarea.setSelectionRange(0, textarea.value.length); const result = document.execCommand('Copy'); if (result) { console.log('复制成功'); } document.body.removeChild(textarea); }; // 绑定点击事件,就是所谓的一键 copy 啦 el.addEventListener('click', el.handler); }, // 当传进来的值更新的时候触发 componentUpdated(el, { value }) { el.$value = value; }, // 指令与元素解绑的时候,移除事件绑定 unbind(el) { el.removeEventListener('click', el.handler); },};export default vCopy;
2,在建一个directives.js文件来注册所有的全局指令
import copy from './copyComm.js';// 自定义指令const directives = { copy,};// 这种写法可以批量注册指令export default { install(Vue) { Object.keys(directives).forEach((key) => { Vue.directive(key, directives[key]); }); },};
3,在main.js注册
import Vue from 'vue';import Directives from './directives';Vue.use(Directives);
4,vue文件使用
<template> <div > <button v-copy="copyText">拷贝</button> </div></template><script> export default { data(){ return { copyText:'要copy的内容' } }, methods: { init () { }, }, watch: {}, props: [], components: {}, computed: {}, mounted () { _this = this; _this.init(); }, }</script>
感谢各位的阅读,以上就是“vuejs如何实现复制功能”的内容了,经过本文的学习后,相信大家对vuejs如何实现复制功能这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: vuejs如何实现复制功能
本文链接: https://lsjlt.com/news/304633.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0