HTML 参考手册
HTML onselect 事件属性
当选取<input>元素中的文本后执行 JavaScript
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script> function showMsg() { alert("你选取了一些文本信息!"); } </script> </head> <body> Some text: <input type="text" value="选取我!!" onselect="showMsg()"> <p>showMsg() 函数在选取输入域文本信息时触发。 该函数弹出了一些信息。</p> </body> </html>
运行结果:
点击运行 »