首页 > 其他分享 >copy

copy

时间:2022-10-12 17:35:51浏览次数:33  
标签:none document textArea style result copy

 1 export const copy = (text) => {
 2   const textArea = document.createElement('textarea');
 3 
 4   textArea.style.position = 'fixed';
 5   textArea.style.top = '0';
 6   textArea.style.right = '0';
 7 
 8   textArea.style.width = '2em';
 9   textArea.style.height = '2em';
10 
11   render.
12   textArea.style.padding = '0';
13 
14   textArea.style.border = 'none';
15   textArea.style.outline = 'none';
16   textArea.style.boxShadow = 'none';
17 
18   textArea.style.background = 'transparent';
19 
20   textArea.value = text;
21   document.body.appendChild(textArea);
22 
23   textArea.select();
24 
25   let result = false;
26   try {
27     result = !!document.execCommand('copy');
28   } catch (err) {
29     // do nothing
30   }
31 
32   document.body.removeChild(textArea);
33   return result;
34 };

 

标签:none,document,textArea,style,result,copy
From: https://www.cnblogs.com/lrtroot/p/16785310.html

相关文章

  • lightdb lt_bulkload,比copy更高效的导入方式以及jdbc copy实现
    https://www.cnblogs.com/liuyuanyuanGOGO/archive/2013/05/08/3066646.htmlhttps://jdbc.postgresql.org/documentation/publicapi/org/postgresql/copy/package-summary......
  • linux 之间 copy 传输文件方法:ftp、samba、sftp、scp、sz/rz
     不同的Linux之间copy文件通常有4种方法1.ftp2.samba服务3.sftp4.scp前三种方法都比较繁琐,最简单的方法就是scp  scpscp本地用户名@IP地址:文件名1远程用户名@IP......
  • Docker 容器内部文件和容器外部文件互相copy
    Docker容器内部文件和容器外部文件互相copy 有时需要将Linux服务器上的文件copy到容器的某个目录(比如:配置文件),有时将容器中的某个文件(比如:日志文件)copy到Linux服务......
  • working copy is not up-to-date:SVN
    本文向大家讲解的是SVN提交错误:workingcopyisnotup-to-date解决方法:解决方法:在相应文件上,单击选择team,然后选择先更新,然后再提交。这样就好了。......
  • 2022-09-30 mysql列存储引擎-去除TempTableForSubquery引发的memcopy的策略
    摘要:在做子查询时, TempTableForSubquery引发大量的memcpy。本文记录消除memcpy的优化的策略。逻辑追踪:火焰图: memcpy追踪:(gdb)bt#0stonedb::core::Filter::Block:......
  • memcopy
    memcpy(内存拷贝函数)c和c++使用的内存拷贝函数,memcpy函数的功能是从源src所指的内存地址的起始位置开始拷贝n个字节到目标dest所指的内存地址的起始位置中。https://blo......
  • Copy 程序变式
    货铺QQ群号:834508274之前因为修改老程序,为方便对比,就copy出来一个新的,在新的上面做的调整。后来上线后,用户反映之前保存的变式没了……额,好吧,我当时应该copy出来后在老的上......
  • How To Hack a Tech Blog Site Need Login To Copy Code All In One
    HowToHackaTechBlogSiteNeedLoginToCopyCodeAllInOne如何破解技术博客网站需要登录才能复制代码AllInOneHTML5contenteditable="true"demo一键......
  • copy2word
    ;Thisscriptcreatesanewdocumenttoholdstufffromtheclipboard.;Thisscriptcreatesanewdocumenttoholdstufffromtheclipboard.;Usage;-Hig......
  • [转]Dockerfile:ADD VS COPY (结论:建议都使用COPY)
    这篇博文将帮助您理解两个类似的Dockerfile指令(ADD和COPY)之间的区别,以及它们如何成为现在的样子,以及我们对您应该使用哪条指令的建议。(提示:不是ADD)从Dockerfile构建Docke......