这是两个jbox弹出后点页面中的保存按钮会走的方法
Response.Write("<script>alert('" + (isEdit ? "修改完成" : "登记完成") + "!');window.parent.location.href=window.parent.location.href; window.parent.window.jBox.close();</script>");
Response.End();
下面是两个点击事件,
function btnEdit_onclick(id) {
$.jBox("iframe:CommonManageTax.aspx?xml=EnterpriseTax&ObjectID=57&action=edit&page=two&commid=" + getQueryString("PrjID") + "&Id=" + id, {
title: "修改",
width: 700,
height: 500,
top: '2%',
buttons: { '关闭': true },
submit: function (v, h, f) {
location.reload(true);
return true;
}
});
}
function btnAdd_onclick() {
$.jBox("iframe:CommonManageTax.aspx?xml=EnterpriseTax&ObjectID=57&action=add&page=two&commid=" + getQueryString("PrjID"), {
title: "新增",
width: 700,
height: 500,
top: '2%',
buttons: { '关闭': true },
submit: function (v, h, f) {
location.reload(true);
return true;
}
});
}
btnAdd_onclick()中的 location.reload(true); 能够正确触发,但是btnEdit_onclick()里面的就不行,请问是为啥,应该怎么解决
|