onselect不能触发文本框选中事件
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function message(){
alert("你触发了选中事件");
}
</script>
</head>
<body>
<form>
个人简介:
<textarea cols="60" rows="10" onselect="message()"> 请输入你的简介。
</textarea>
</form>
</body>
</html>