其他分享
首页 > 其他分享> > 移动端 点击 复制到剪贴版

移动端 点击 复制到剪贴版

作者:互联网

$('.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)
})

标签:复制到,copy,剪贴,text,delay,点击,clipBoard,input,document
来源: https://www.cnblogs.com/luoshida/p/12071867.html