<!-- 要完成此效果把如下代码加入到<body>区域中 -->
鼠标 似的 士大夫假大空十分 士大夫教科书地方
<script>
function doMouseMove() {
var tr = document.body.createTextRange();
tr.moveToPoint(event.clientX, event.clientY);
// Expand to the entire word under the mouse.
tr.expand("word");
window.status = tr.text;
}
document.onmousemove = doMouseMove;
</script>