简单教程
提交运行
代码编辑器:
<p>演示了如何使用 HTML DOM 向 input 元素添加 "oncopy" 事件</p> <input type="text" id="myInput" value="尝试拷贝文本"> <script> document.getElementById("myInput").oncopy = function() {myFunction()}; function myFunction() { alert("你拷贝了文本!"); } </script>
运行结果: