.mouseover(function(){
      $(this).addClass("left_mouseover");
}).mouseout(function(){
  $(this).removeClass("left_mouseover");       
})

解决方案 »

  1.   

    用 $("#id").hover(function(){
            //mouseover
        },function(){
            //mouseout
        })
      

  2.   

    我对jquery不熟悉,按照我的经验,你可以看看‘this’,这个this指针在某些时候并不指向当前的element,视乎你如何添加IE事件的。
      

  3.   


    jQuery(function(){
    $("#id").mouseover(function(){
    $(this).addClass("left_mouseover");
    }).mouseout(function(){
    $(this).removeClass("left_mouseover");       
    })
    });
    ie也是可以的呀!
      

  4.   

    .mouseover(function(e){
              $(this).addClass("left_mouseover");
            }).mouseout(function(){
              $(this).removeClass("left_mouseover");       
            })