jQuery在鼠标悬停时调用任何<a> tag?

时间:2017-02-22 20:08:01

标签: jquery

This is my code that doesn't work:

$(a).on('mouseover', function() {
    alert('alert');
});

2 个答案:

答案 0 :(得分:2)

试试这个

$('a').on('mouseover', function() {
    alert('alert');
});

将其包裹在document.ready中,如下所示

$(document).ready(function() {
    $('a').on('mouseover', function() {
        alert('alert');
    });
});

它适用于此。 https://jsfiddle.net/3648w1gr/

答案 1 :(得分:1)

您需要将$(a)更改为$('a'),并且该活动的名称为mouseenter

$('a').on('mouseenter', function() {
alert('alert');
});