下面的例子演示了文本域内的内容被剪切时,会弹出一个信息提示框:
<html> <body> <input type="text" value="文字内容" oncut="alert('文字已被剪切!')" /> </body> </html>
0