jQuery中bind函数绑定多个事件

在jQuery中绑定多个事件名称是,使用空格隔开,举例如下:

$('#foo').bind('mouseenter mouseleave', function() {
  $(this).toggleClass('entered');
});

在1.4版本以后,也可以如下绑定

$('#foo').bind({
  click: function() {
    // do something on click
  },
  mouseenter: function() {
    // do something on mouseenter
  }
});

你可能感兴趣的:(jquery)