我正在尝试在popover中显示一个日期选择器(使用bootstrap和bootstrap-datepicker扩展)并遇到一些问题, 首先我遇到显示datepicker的问题并找到了这个主题:Datepicker in Popover Won't display ,但现在它显示在我的弹出框后面,所以它不完全可见
以下是HTML代码:
<button type="submit" class="btn btn-primary pop_doleance" rel="popover" data-original-title="Ajouter doléance">Ajouter doléance</button>
<div style="display: none" class="pop_doleance_content">
<form class="well form-inline form_doleance">
<label for="date">Date : </label>
<input id="date" type="text" class="input-medium">
</form>
和Javascript代码:
var tmp = $.fn.popover.Constructor.prototype.show;
$.fn.popover.Constructor.prototype.show = function (){
tmp.call(this);
if (this.options.callback) {
this.options.callback();
}
}
$(function (){
$(".pop_doleance").popover({
placement:'bottom',
html : true,
content: function(){return $('.pop_doleance_content').html();},
callback: function(){$('#date').datepicker();}
});
});
有什么想法吗?
答案 0 :(得分:8)
将弹出窗口的z-index设置为较低的值。
.popup { z-index : 900; }
并将datepicker的容器z-index设置为更高的值,就像jquery ui datepicker set
一样.ui-datepicker-div { z-index: 999; }
答案 1 :(得分:0)
在CSS中,我添加了:
.datepicker {
z-index: 999 !important;
}
请注意“!重要”。没有这个就行不通。