我试图在您将鼠标悬停在网页的任何链接上时发生事件。
我想我需要使用鼠标悬停事件,但我不知道如何做到这一点。
我只是想让它识别它,并给我一个提醒。感谢
答案 0 :(得分:1)
Array.prototype.forEach.call(document.getElementsByTagName('a'),
function(el) {
console.log(el);
el.addEventListener("mouseover", function() {
alert(el);
});
});
如果你可以使用jQuery,那就更容易了:
$('a').on("mouseover", function(e) {
alert(e.target);
});