const text = “1111”;
let inputDom = document.createElement('textarea') // js创建一个文本框
document.body.appendChild(inputDom) //将文本框暂时创建到实例里面
inputDom.value = text //将需要复制的内容赋值到创建的文本框中
inputDom.select() //选中文本框中的内容
inputDom.focus()
document.execCommand('copy') //执行复制操作
document.body.removeChild(inputDom) //最后移出
alert('复制成功');