简单教程
提交运行
代码编辑器:
<p>演示了如何向 input 元素中添加 "oncut" 事件</p> <input type="text" oncut="myFunction()" value="尝试剪切该文本"> <script> function myFunction() { alert("你剪切了文本!"); } </script>
运行结果: