专注前端素材!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> <script> function showMsg() { alert("你选取了一些文本信息!"); } </script> </head> <body> Some text: <input type="text" value="选取我!!" onselect="showMsg()"> <p>showMsg() 函数在选取输入域文本信息时触发。 该函数弹出了一些信息。</p> </body> </html>
运行结果