前端巧妙实现点击复制操作

Posted ଳxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端巧妙实现点击复制操作相关的知识,希望对你有一定的参考价值。

            copyGroupId(groupId) 
				//创建一个新组件
				let oInput = document.createElement('input');
				//给新组件赋值
				oInput.value = groupId;
				//添加新节点到页面body中
				document.body.appendChild(oInput);
				//选择对象
				oInput.select();
				//对选择对象的值进行复制到浏览器中
				document.execCommand("Copy");
				this.$message.success(groupId);
				//删除新节点(重置操作)
				document.body.removeChild(oInput);
			,

以上是关于前端巧妙实现点击复制操作的主要内容,如果未能解决你的问题,请参考以下文章

前端实现点击复制

巧妙利用selenium中的JS操作来处理特殊的文本框

前端性能监控window.performance的巧妙写法

前端性能监控window.performance的巧妙写法

#yyds干货盘点# React工作记录六十七前端实现复制文字操作

前端复制长字符串卡死