移动端 点击 复制到剪贴版

$('.copy').click(function(){
  var text=$(this).prev().children().text()
  const input = document.createElement('input');
  input.setAttribute('readonly','readonly');
  input.setAttribute('value',text);
  document.body.appendChild(input);
  input.setSelectionRange(0, 9999);
  if (document.execCommand('copy')) {
    input.select()
    document.execCommand('copy');
  }
  document.body.removeChild(input);
  $('.clipBoard_notice').css('display','block')
  clearTimeout(this.delay)
  this.delay=setTimeout(function(){
    $('.clipBoard_notice').css('display','none')
  },2000)
})

上一篇:一文搞懂vim复制粘贴


下一篇:java-如果处置了外壳,Windows剪贴板中的SWT剪贴板数据将不可用