为元素添加鼠标移入事件的监听器时,应该使用'addEventListener('mouseenter', function)”,而不是'addEventListener('not', function)”等错误的写法。示例如下:
HTML代码: 按钮
JavaScript代码: const btn = document.querySelector('#btn'); btn.addEventListener('mouseenter', function() { alert('鼠标移入!') });
上一篇:addEventListener没有正确调用API
下一篇:addEventListeneronmouseout改变函数参数不起作用