只要鼠标指针在 HTML 中元素上移动,就执行一个脚本?
当鼠标指针移到一个元素上时,onmousemove 属性会被触发。你可以尝试以下代码来实现onmousemove 属性 −
示例
<!DOCTYPE html> <html> <body> <h3 id = "myid" onmousemove = "mouseMove()"> This is demo heading. </h3> <p>Click above and then release.</p> <script> function mouseMove() { document.getElementById("myid").style.color = "red"; } </script> </body> </html>
广告