编辑下面的代码:【加编码】
<html> <body> <p>该实例演示了如何向 h1 元素添加 "onmouseenter" 和 "onmouseleave" 事件。</p> <h1 id="demo" onmouseenter="mouseEnter()" onmouseleave="mouseLeave()">鼠标移到我这</h1> <script> function mouseEnter() { document.getElementById("demo").style.color = "red"; } function mouseLeave() { document.getElementById("demo").style.color = "black"; } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂