French

French - 技术经验
澄其心, 断其欲, 方能悟道
  1. 首页
  2. WEB前端
  3. 正文

JS点击复制功能

2022-04-02 2719点热度 0人点赞 0条评论

因项目需要做一个点击复制功能,  功能实现之后,特此记录一下

copy_value(value){
  let copy = document.createElement("input");
  copy.value = value;
  document.body.appendChild(copy);
  copy.select();
  document.execCommand("Copy");
  document.body.removeChild(copy);
}

 

本作品采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可
标签: 暂无
最后更新:2022-04-02

French

这个人很懒,什么都没留下

打赏 点赞
< 上一篇

文章评论

razz evil exclaim smile redface biggrin eek confused idea lol mad twisted rolleyes wink cool arrow neutral cry mrgreen drooling persevering
取消回复

COPYRIGHT © 2018-2024 French. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang

蜀ICP备2022008471号-1

川公网安备 51130202000393号