English
<!-- To achieve this effect, add the following code to the <body> area --> The mouse looks like a scholar-official, a fake space, a ten-point scholar-official textbook place <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>