移动端 点击 复制到剪贴版

Posted luoshida

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端 点击 复制到剪贴版相关的知识,希望对你有一定的参考价值。

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

以上是关于移动端 点击 复制到剪贴版的主要内容,如果未能解决你的问题,请参考以下文章

移动端实现复制到剪贴板

H5移动端 控制剪贴板

移动端复制到剪贴板

JS pc端和移动端共同实现复制到剪贴板功能实现

JS 点击复制按钮 将文字复制到手机剪贴板

移动端实现复制内容至剪贴板