中文(繁体)
<!-- 要完成此效果把如下程式碼加入<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>