我正在嘗試爲自舉彈出窗口創建一個動態位移函數,以便如果內容太大而無法在沒有垂直滾動的情況下在「底部」放置的屏幕上顯示,向上展示「top」展示位置。Twitter-Bootstrap彈出窗口的動態放置
對於這一點,我創建了一個功能:
function popoverPlacement(popoverHeight, element) {
var offset = element.offset().top;
var height = popoverHeight;
var docheight = $(document).height();
if (offset + height >= docheight) {
return "top";
}
else {
return "bottom"
}
}
不幸的是,我需要指定popoverHeight作爲一個硬編碼值,因爲對於酥料餅生成內容,而不是添加到DOM,所以我不能獲得它的高度。
這是如何使用它:
$(this).popover({
placement: function() { return popoverPlacement(270, this.$element); },
title: "Status",
trigger: "click",
content: editStatusContent,
html: true,
delay: {
show: 1,
hide: 1
},
animation: false
});
有一個動態的方式來實現這一目標?
感謝