编辑下面的代码:【加编码】
<html> <body> <p>该实例使用了 addEventListener() 方法向 h1 元素添加 "mouseenter" 和 "mouseleave" 事件。</p> <h1 id="demo">Mouse over me</h1> <script> document.getElementById("demo").addEventListener("mouseenter", mouseEnter); document.getElementById("demo").addEventListener("mouseleave", mouseLeave); function mouseEnter() { document.getElementById("demo").style.color = "red"; } function mouseLeave() { document.getElementById("demo").style.color = "black"; } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂