当我关闭对话框时,页面会重新加载。我该如何预防?
function getDialog(url){
$.mobile.showPageLoadingMsg();
$.ajax({
url:url,
success: function(result) {
$('#content').html(result);
$.mobile.changePage('#dialog', 'pop', true, true);
}
});
}