Khi người dùng cắt văn bản của phần tử, nội soi trình kích hoạt thuộc tính trong HTML.
Ví dụ
Bạn có thể thử chạy mã sau để triển khai nội soi thuộc tính -
<!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>