js拷贝指定内容到剪切板

2021-06-28 03:03

阅读:405

标签:sel   keyword   var   board   back   clip   com   str   oar   

 function copyTextToClipboard(text) {  
  var textArea = document.createElement("textarea");   
  textArea.style.background = ‘transparent‘;  
  textArea.value = text;  
  document.body.appendChild(textArea);  
  textArea.select();  
  try {    
    var successful = document.execCommand(‘copy‘);    
    var msg = successful ? ‘successful‘ : ‘unsuccessful‘;          
  } catch (err) {  
  console.log(‘Oops, unable to copy‘);  
  }  
 document.body.removeChild(textArea);}

js拷贝指定内容到剪切板

标签:sel   keyword   var   board   back   clip   com   str   oar   

原文地址:http://www.cnblogs.com/zinan/p/7145212.html


评论


亲,登录后才可以留言!