0

菜单上的鼠标悬停在除 IE8 和 IE7 之外的所有浏览器中都可以正常工作:

$(function(){

    $(".menu ul li").hover(function(){

        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');

    }, function(){

        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');

    });

    $(".menu ul  li ul li:has(ul)").find("a:first").append(" » ");

});
4

1 回答 1

-1

jQuery 1.x will work with IE6+ jQuery 2.x will work with IE9+. Check you jQuery and IE version. THis should solve your problem.

于 2013-03-05T05:43:39.653 回答