您好我正在使用jquery mobile 1.2.0并使用弹出窗口。我需要在我的jquery移动页面中显示一个包含列表视图的弹出窗口,但是当弹出窗口显示时我可以向下滚动,例如标题位于固定位置。我试过了
$("#pushNotificationExample").bind({
popupafteropen: function(event, ui) {
$("#pushNotificationExample").css({position:'fixed', top:0}); }
});
但没有运气。还有另外一种方法吗?
答案 0 :(得分:2)
以下内容会将弹出窗口置于页面的顶部和中心。
<强> Demo 强>
$('#popupMenu').on('popupafteropen', function () {
var center = ($(document).width() - $('.ui-popup-container').width()) / 2;
$('.ui-popup-container').css({
top: 0,
left: center
});
});