- 注册时间
- 2017-4-6
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 12
- 精华
- 0
- 帖子
- 4
|
dforce 发表于 2017-4-6 15:48
这些代码看不出什么问题,
把你关闭弹出后的处理代码贴出来,
mini.open的destroy里面有没有执行什么特别的 ...
/*
添加角色
*/
function add() {
mini.open({
url:"<%=request.getContextPath()%>/role/toAddRole",
title : "新增角色",
width : 400,
height : 600,
onload : function() {
var iframe = this.getIFrameEl();
var data = {
action : "new"
};
iframe.contentWindow.SetData(data);
},
ondestroy : function(action) {
grid.reload();
}
});
}
就只有这个点击时弹出函数 |
|