0

大家好,我是网络编程的新手,我的代码有问题:

$(document).ready(function(){
$("#adminBox").parent().append("<span></span>");    
$("a.adlog:link").click(function() { 
    $(this).parent().find("#adminBox").slideDown('fast').show();
    $(this).parent().hover(function() {
    }, function(){  
        $(this).parent().find("#adminBox").slideUp('slow'); //here i want to change...
    });
    }).hover(function() { 
        $(this).addClass("a.adlog:hover");
    }, function(){
        $(this).removeClass("a.adlog:hover");
});
});


我想更改单击("#adminBox").slideUp('slow')时的处理$("a.adlog:link")方式。

4

1 回答 1

1

试试这个。

$(document).ready(function(){
$("#adminBox").parent().append("<span></span>");   

$(".adlog").click(function() { 
    $(this).parent().find("#adminBox").slideDown('fast');
})

$(".adlog").parent().hover(function() {
    }, function(){  
        $(this).parent().find("#adminBox").slideUp('slow'); //here you want to change...
});


$(".adlog").hover(function() { 
        $(this).addClass("adlogHover");
    }, function(){
        $(this).removeClass("adlogHover");
});

});
于 2012-05-18T08:38:05.550 回答