通過 JavaScript 在瀏覽器中獲取或設(shè)置剪貼板中的內(nèi)容,常用于一鍵復(fù)制或使用網(wǎng)頁油猴復(fù)制限制文本
成都創(chuàng)新互聯(lián)公司自2013年起,先為淮安等服務(wù)建站,淮安等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為淮安企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
document.onclick = function() {
let text = 'hello world'
let dom_input = document.createElement('input')
dom_input.value = text
document.body.appendChild(dom_input)
dom_input.select()
document.execCommand("Copy")
dom_input.parentElement.removeChild(dom_input)
}
用戶和頁面要先有交互(點(diǎn)擊行為)才能復(fù)制成功