我要执行的操作是淡出两个不同的div,然后淡入其他两个不同的div。一位朋友告诉/告诉我如何做,但我忘记了。关于用逗号分隔div的事情?它没有用,所以我可能做错了。帮助将不胜感激。

$('#forward').click(function(){
$('.contentRight', '.contentLeft').fadeOut('slow', function(){
    $('.contentRight2, .contentLeft2').fadeIn('slow');
});
});

$('#back').click(function(){
$('.contentRight2', '.contentLeft2').fadeOut('slow', function(){
    $('.contentRight, .contentLeft').fadeIn('slow');
});
});

最佳答案

指定选择器时,您在错误的位置使用逗号,因此...

替换为:

$('.contentRight', '.contentLeft')...


有了这个:

$('.contentRight, .contentLeft')...

09-25 19:35