Jquery date picker z-index issue

前端 未结 14 2115
傲寒
傲寒 2020-12-02 12:57

I have a slideshow div, and I have a datepicker field above that div.

When I click in the datepicker field, the datepicker panel show behind slideshow div.

14条回答
  •  隐瞒了意图╮
    2020-12-02 13:28

    Based in marksyzm answer, this worked for me:

    $('input').datepicker({
        beforeShow:function(input) {
            $(input).css({
                "position": "relative",
                "z-index": 999999
            });
        }
    });
    

提交回复
热议问题