我目前正在尝试交换两个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索引也交换。

感谢您的帮助!

最佳答案

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




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

关于jquery - 使用jQuery交换2个div的位置和Z-Index,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13447582/

10-11 11:39