我正在尝试使用下面的代码。它可以按预期在Firefox上正常工作,但是当我尝试IE或Chrome时,on
或live
方法不会触发。有人可以帮我吗?
$('#serverCpus').find('option').on('mouseenter', function (a) {
a.stopImmediatePropagation();
console.log('hihihi');
});
答案 0 :(得分:0)
这对我有用:
$('option').on('mouseenter', function() {
console.log('mouse just entered an option')
}