0

我目前正在尝试将两个 div 的位置与 z-index 一起交换。到目前为止,这就是我所拥有的:

$(document).ready(function()
{
        $('.herotrend').click(function()
        {
                $(this).animate({
                        top: $('.herotrend:eq(1)').css('top'),
                        left: $('.herotrend:eq(1)').css('left'),
                        z: $('.herotrend:eq(1)').css('zIndex')
                }, 100);

                $('#music').animate({
                        top: $('.herotrend:eq(0)').css('top'),
                        left: $('.herotrend:eq(0)').css('left'),
                        z: $('.herotrend:eq(0)').css('zIndex')
                }, 100);
        });
});

这已经成功地交换了元素的位置,但我仍然无法让 z-index 也交换。

谢谢你的帮助!

4

1 回答 1

1
zIndex: $('.herotrend:eq(1)').css('zIndex')

不是

z: $('.herotrend:eq(1)').css('zIndex')
于 2012-11-19T06:26:22.657 回答