Anuluca Date : 2021-03-03 Tags : 3
css:
123
span{ user-select: none;}
或者
js:
document.body.onselectstart = e => { e.preventDefault();}
在HTML元素上:
1
<input oncopy='cb'>
在JS中获取元素:
12
document.querySelector('p').oncopy = cbdocument.oncopy = cb
document.querySelector('p').addEventListener('copy',cb)document.addEventListener('copy',cb)