js 获取被选中文本的方法

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>js 获取被选中文本的方法 document.onselect</title>
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<textarea name="search_input" id="search_input">用鼠标选取我们这些文字看看下面是否会出现</textarea>
<div id="selection">
</div>
<script>
//js 获取被选中文本的方法 document.onselect
        document.onselect = function(){
            document.getElementById('selection').innerHTML = window.getSelection().toString();
        }
</script>
</body>
</html>