即墨还雀 发表于 2016-8-25 15:30:57

两个点击事件弹出的JBox窗,其中一个关闭后不能刷新页面


这是两个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()里面的就不行,请问是为啥,应该怎么解决


ibcadmin 发表于 2016-8-26 09:34:01

... 前端我无能为力

min 发表于 2016-8-26 09:44:34

顶顶顶

fkqul 发表于 2019-8-2 13:44:20

请问大家有什么看法?我绝对喜欢这个帖子











static/image/common/sigline.gif
中国2019年合法代怀孕
页: [1]
查看完整版本: 两个点击事件弹出的JBox窗,其中一个关闭后不能刷新页面