源代码:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> <script> function showMsg() { alert("你选取了一些文本信息!"); } </script> </head> <body> Some text: <input type="text" value="选取我!!" onselect="showMsg()"> <p>showMsg() 函数在选取输入域文本信息时触发。 该函数弹出了一些信息。</p> </body> </html>
运行结果:
Fmpq工具