Khi người dùng cắt văn bản của phần tử, oncut 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 oncut thuộc tính -
<!DOCTYPE html> <html> <body> <input type = "text" oncut = "display()" value = "Cut me"> <h2 id = "test">Try to cut the above text.</h2> <script> function display() { document.getElementById("test").innerHTML = "Your cut text worked!"; } </script> </body> </html>