我的弹出窗口太大了,尽管这是因为有一个可搜索的列表。由于我想在滚动列表的同时将搜索字段保持在顶部,所以我必须这样做:
$("#confirmDialog").on({
popupbeforeposition: function (e, ui) {
var maxHeight = $(window).height() - 100 + "px";
$("#confirmDialog .ui-content").css("max-height", maxHeight);
},
popupafteropen: function (e, ui) {
var maxHeight = $(window).height() - 150 + "px";
$("#confirmDialog .ui-content ul").css("max-height", maxHeight).css("overflow-y", "scroll");
}
});
记住不要对
maxHeight
一旦被指定为字符串,则这不起作用:
$("#confirmDialog .ui-content").css("max-height", maxHeight - 50);