js复制到剪切板

// 复制到剪切板
const copy = (val) => {
  const input = document.createElement('input')
  input.setAttribute('readonly', 'readonly')
  input.setAttribute('value', val)
  // input.value = val
  document.body.appendChild(input)
  input.select()
  input.setSelectionRange(0, input.value.length)
  if (document.execCommand('copy')) {
    document.execCommand('copy')
    Toast('复制成功 :' + val)
  }
  document.body.removeChild(input)
}

你可能感兴趣的:(js)