源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> </head> <body> 一些文本: <input type="text" value="现在我!!" onselect="myFunction()"> <p>当输入框的文本被选中时myFunction()函数被触发,它会显示一些信息</p> <script> function myFunction() { alert("你选择了一些文本!"); } </script> </body> </html>
运行结果