本帖最后由 xx361279496 于 2013-01-13 17:40:00 编辑

解决方案 »

  1.   

    $("#wenzi a").mouseenter(function(){
                $("#tu").attr("href",$(this).attr("href"));
                $("#meinv"+$(this).attr("id")).stop().fadeIn().siblings().fadeout();
            })
      

  2.   

        $(document).ready(function(){
            $("#wenzi a").mouseenter(function(){
                $("#tu").attr("href",$(this).attr("href"));
                $("#meinv"+$(this).attr("id")).fadeIn().siblings().fadeOut();
            })
        })
    //fadeOut中的o应该大写