xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<script>
function showMsg()
{
alert("你选取了一些文本信息!");
}
</script>
</head>
<body>
Some text: <input type="text" value="选取我!!" onselect="showMsg()">
<p>showMsg() 函数在选取输入域文本信息时触发。 该函数弹出了一些信息。</p>
</body>
</html>