页面提交跳转 回index.jsp
success:function(obj){
mui.alert( "保存成功!",function(){
mui.openWindow({
url: 'index.jsp',
show:{
autoShow:true,
aniShow:"fade-in",
},
});
}, null, "好");
}
这种方法 提交表单可以刷新页面,但是webview多出了一个index.jsp. 回退会出现一个未更新数据的index.jsp.
有没有一种方法 可回退刷新index.jsp的.
success:function(obj){
mui.alert( "保存成功!",function(){
mui.back();
//求执行index.jsp刷新.
}, null, "好");
}
0 个回复