码迷,mamicode.com
首页 > Web开发 > 详细

js 复制文本到剪贴板

时间:2018-05-11 17:17:24      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:class   ati   isp   var   命令   复制   create   display   child   

  var str = "博客园最棒!";   var tempInput = document.createElement(‘input‘);   tempInput.value = Url2;   document.body.appendChild(tempInput);   tempInput.select(); // 选择对象   document.execCommand("Copy"); // 执行浏览器复制命令   tempInput.className = ‘tempInput‘;   tempInput.style.display=‘none‘;   document.body.removeChild("tempInput");

 

  “博客园最棒!”

  比如把这句话复制到剪贴板

  var str = "博客园最棒!";

  var tempInput = document.createElement(‘input‘);

  tempInput.value = Url2;

  document.body.appendChild(tempInput);

  tempInput.select(); // 选择对象

  document.execCommand("Copy"); // 执行浏览器复制命令

  tempInput.className = ‘tempInput‘;

  tempInput.style.display=‘none‘;

  document.body.removeChild("tempInput");

 

 

js 复制文本到剪贴板

标签:class   ati   isp   var   命令   复制   create   display   child   

原文地址:https://www.cnblogs.com/hill-foryou/p/9025214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!