觸發(fā) oncopy
屬性事件當(dāng)復(fù)制元素的內(nèi)容時(shí)。
沒有。
<element oncopy="script or Javascript function name">
所有HTML元素
oncopy |
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body>
<p oncopy="myFunction()">Copy me</p>
<script>
function myFunction() {
console.log("You copied text!");
}
</script>
</body>
</html>
更多建議: