我需要编写和注册一个事件处理程序,当将鼠标悬停在h1上时,该事件处理程序会在控制台日志上显示文本,但是我无法显示该文本。 这是我的JavaScript代码:
var h1Element = document.getElementsByTagName("h1")[0];
h1Element.addEventListener("mouseover", mouse);
function mouse() {
console.log("my text here");
}
<h1>I am an h1</h1>