onpaste sự kiện xảy ra khi bạn dán nội dung vào phần tử.
Ví dụ
Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với onpaste sự kiện trong JavaScript.
<!DOCTYPE html> <html> <body> <input type="text" onpaste="pasteFunction()" value="paste text here"> <script> function pasteFunction() { document.write("Text pasted successfully!"); } </script> </body> </html>