我使用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');