x
 
<!DOCTYPE html>
<html>
<body>
请选择一些文本:<input type="text" value="Hello world!" onselect="myFunction()">
<script>
function myFunction() {
  alert("You selected some text!");
}
</script>
</body>
</html>