结合多个div上的jquery .on()

我有这个:

$('#MyDiv1').on({

   mouseenter: function () { SomeFunction(); },
   mouseleave: function () { SomeOtherFunction(); }

}, '.SomeClass');

$('#MyDiv2').on({

   mouseenter: function () { SomeFunction(); },
   mouseleave: function () { SomeOtherFunction(); }

}, '.SomeClass');

基本上, MyDiv1MyDiv2的处理程序都是相同的。

我如何将它们组合成一个处理程序?

谢谢。


$('#MyDiv1, #MyDiv2').on({

   mouseenter: function () { SomeFunction(); },
   mouseleave: function () { SomeOtherFunction(); },

}, '.SomeClass');
链接地址: http://www.djcxy.com/p/83457.html

上一篇: combine jquery .on() on multiple divs

下一篇: Set same click for multiple jQuery objects with CoffeeScript