当元素的内容被剪切时, oncut 事件会触发。您可以尝试运行以下代码,了解如何在JavaScript中使用oncut事件 −
<!DOCTYPE html> <html> <body> <input type = "text" oncut = "cutFunction()" value = "cut the text"> <script> function cutFunction() { document.write("Text cut!"); } </script> </body> </html>
以上是当一个元素的内容被剪切时,在JavaScript中会发生哪个事件?的详细内容。更多信息请关注PHP中文网其他相关文章!