Datepicker落后于活动按钮

时间:2014-08-05 07:32:05

标签: jquery twitter-bootstrap jquery-ui datepicker

我的datepicker脚本有问题。当我在按钮上使用bootstraps'active'时,它最终会在我的datepicker之上而不是在后面。我已经尝试过使用z-index,但我没有让它工作。

这可能是我在datepicker中没有理解的一些设置吗?

JSFiddle:http://jsfiddle.net/539Xh/

<script> 
    $('.datepicker').datepicker(); //Added this mainly because I had to have code with jsfiddle.
</script>

PS。我尝试过使用Firefox 31.0和IE 9.0.29

1 个答案:

答案 0 :(得分:1)

只需设置日期选择器的z-index和位置css,如下所示:

.datepicker {
    z-index: 1000;
    position: absolute;
}

JsFiddle