當元素的內容被剪下時, 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中文網其他相關文章!