เมื่อผู้ใช้ตัดข้อความขององค์ประกอบ oncopy ทริกเกอร์แอตทริบิวต์ใน HTML
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน oncopy แอตทริบิวต์ −
<!DOCTYPE html> <html> <body> <input type = "text" oncopy="display()" value = "Copy me"> <h2 id = "test">Try to copy the above text.</h2> <script> function display() { document.getElementById("test").innerHTML = "Your copied text worked!"; } </script> </body> </html>