固定在顶部的jquery移动弹出窗口无法正常工作?

时间:2013-04-29 12:39:52

标签: cordova jquery-mobile

您好我正在使用jquery mobile 1.2.0并使用弹出窗口。我需要在我的jquery移动页面中显示一个包含列表视图的弹出窗口,但是当弹出窗口显示时我可以向下滚动,例如标题位于固定位置。我试过了

$("#pushNotificationExample").bind({
 popupafteropen: function(event, ui) {
  $("#pushNotificationExample").css({position:'fixed', top:0}); }
});

但没有运气。还有另外一种方法吗?

1 个答案:

答案 0 :(得分:2)

以下内容会将弹出窗口置于页面的顶部和中心。

  

<强> Demo

$('#popupMenu').on('popupafteropen', function () {
 var center = ($(document).width() - $('.ui-popup-container').width()) / 2;
 $('.ui-popup-container').css({
   top: 0,
     left: center
 });  
});