JQUERY Live Hover

来源:互联网 发布:饥荒数据修改器 编辑:程序博客网 时间:2024/05/21 06:48
//菜单效果            $(".hmain").live('mouseenter', function() {                $(this).css("background-image", "url(images/menutwo.jpg)");                $(this).children("a").css("color", "#FFFFFF");                if ($.browser.mozilla) {                    $(this).children("ul").children("li").children("a").css("width", "89px");                }                $(this).children("ul").show();            }).live('mouseleave', function() {                $(this).css("background-image", "url(images/menuone.jpg)")                $(this).children("a").css("color", "#000000");                $(this).children("ul").hide();            });


原创粉丝点击