- 注册时间
- 2016-11-24
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 52
- 精华
- 0
- 帖子
- 7

|
mini.open打开jsp页面,没有确认按钮
function onSelectFile(){
mini.open({
url : "${pageContext.request.contextPath}/file/fileCataloginfo.jsp?prjUuid="+prjUuid,
title : "项目列表",
width : 725,
height : 500,
showMaxButton : true,
ondestroy : function(data) {
if (data.indexOf("[") == 0) {
var objs = mini.decode(data);
$("[name=prjID]").val(objs[0].uuid);
initUpBtn();
}
}
});
}
|
|