W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function message() { alert("当您选择输入框中的内容时会触发这个提示框") } </script> </head> <body> <p>请选择输入框中的内容</p> <form> <input type="text" value="Select this text" onselect="message()" size="20"> </form> </body> </html>