jQuery on()或live

时间:2013-02-05 07:46:59

标签: javascript web jquery jquery-on

我正在尝试使用下面的代码。它可以按预期在Firefox上正常工作,但是当我尝试IE或Chrome时,onlive方法不会触发。有人可以帮我吗?

$('#serverCpus').find('option').on('mouseenter', function (a) {
    a.stopImmediatePropagation();
    console.log('hihihi');
});

1 个答案:

答案 0 :(得分:0)

这对我有用:

$('option').on('mouseenter', function() {
    console.log('mouse just entered an option')
}