jquery live hover绑定方法

$(".select_item span").live({
   mouseenter:
   function()
   {
      $(this).addClass("hover");
   },
   mouseleave:
   function()
   {
      $(this).removeClass("hover");
   }
});

 注意:jquery1.9以上版本不支持live,新方法为on

posted @ 2016-07-14 09:12  WebApi  阅读(215)  评论(0编辑  收藏  举报
CopyRight © 博客园 WebAPI