我的应用程序有问题。我正在使用cordova & jquery mobile 开发应用程序。按照 jquery mobile master 上的代码,我发现了该代码
function openPopup(idPopup, onTimeout) {
var popupContent = '<div data-role="content" data-theme="a" style="border:0px;" class="ui-corner-bottom ui-content centerContent">' +
'<h3 class="ui-title" id="myTitle">Caricamento</h3>' +
'<img src="img/load_shop33sell.gif"/></div>';
var popup = '<div data-role="popup" id="popup-' + idPopup + '" data-overlay-theme="b" data-theme="a" class="ui-content">' + popupContent + '</div>';
$.mobile.activePage.append(popup).trigger("pagecreate");
$("#popup-" + idPopup).on({
popupbeforeposition: function () {
$('.ui-popup-screen').off();
}
});
var fallback = setTimeout(function () {
$("#popup-" + idPopup).popup("open");
}, 3000);
$("#popup-" + idPopup).popup("open");
clearTimeout(fallback);
callback = setTimeout(function () {
$("#popup-" + idPopup).popup('close');
if (onTimeout && typeof (onTimeout) === "function") {
onTimeout();
}
}, 20000);
}
使用此代码,我可以打开一个弹出窗口而无需包含
<div data-role="popup">..../<div>
在我创建的每个页面中。我只是修改了一些添加 popupbeforeposition 事件以通过单击背景使弹出窗口不可关闭。好吧,它工作正常,但我遇到了问题。在我的第一页随机发生这种情况
似乎弹出窗口在获得正确位置之前打开。此外,我还有一个可滚动的第二页,而且我总是遇到这种情况。如果我尝试向上滚动到页面顶部,我有一半的屏幕是黑色的,如第一张图片所示。
可能是什么问题呢?
提前谢谢,对不起我的英语:)