0

当存在两个类之一时,我想激活鼠标悬停。现在我有一个名为 first-game 的类。

 $(document).on('mouseover', 'a.first-game', function(e){

现在我想要两节课。我试过这样的事情:

 $(document).on('mouseover', 'a.first-game' || 'a.second-game', function(e){

任何帮助将非常感激

4

1 回答 1

1

您需要使用多个选择器,其中每个选择器由,

$(document).on('mouseover', 'a.first-game, a.second-game', function(e){

演示:小提琴

于 2013-06-13T10:04:32.817 回答