我正在尝试使移动视口的 jquery 对话框中心专门用于 iphone 的 safari,但是当用户尝试放大页面时,对话框会移动到页面的右下角,这使得它不再可见。
这是代码:
//-- The dialog
$("#dialog").dialog({
modal:true,
draggable:true,
resizable:false,
width:650,
height:330,
cache:false,
position:'center'
});
//-- Make dialog center when page resize
$(window).resize(function() {
$(".ui-dialog-content").dialog("option", "position", "center");
});
这在 PC 的浏览器中完美运行,但对于移动设备,它仅在页面缩小时才有效。
知道怎么做吗?