运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> Select some of the text: <input type="text" value="Hello world!" onselect="myFunction()"> <script> function myFunction() { alert("You selected some text!"); } </script> </body> </html>