我使用 changepage 和 dialog('close') 以编程方式打开/关闭 JQuery-mobile 对话框,但问题是关闭后,启动对话框显示的页面是空白的,什么都没有。如何解决这个问题
使用带有主干视图和路由器和电话间隙的 JQuery-mobile
代码
打开对话框
//render
__this.currentDialog.render(
function() { //done rendering
$.mobile.changePage(__this.currentDialog.$el, {'role' : 'dialog', 'transition' : 'pop', 'changeHash' : false});
}
);
关闭对话框
dialogView.$el.dialog('close');