document.querySelector(input).select() //主動觸發(fā)文本框的選擇事件
if(document.execCommand("copy") ){ //返回一個布爾值
alert('復制成功')
}else{
alert('復制失敗')
}
兼容性:
document.execCommand("copy")
僅有ios不支持
document.querySelector(input).select() //主動觸發(fā)文本框的選擇事件
if(document.execCommand("copy") ){ //返回一個布爾值
alert('復制成功')
}else{
alert('復制失敗')
}
兼容性:
document.execCommand("copy")
僅有ios不支持