Jquery Draggable + Bring to Front

前端 未结 4 936
长情又很酷
长情又很酷 2021-01-21 13:43

I have a window with a number of chat DIV\'s where a user to chat to different people.

Currently the chat DIV\'s can be open and moved around but I can\'t see to get the

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-21 13:58

    For several draggables where you want to bring one to front and reset others to back:

    $('.container').on('mousedown', function(event) { 
        $('.container').css('z-index','1');
        $( this ).css('z-index','1000');
    });
    

提交回复
热议问题