zoukankan      html  css  js  c++  java
  • 添加数据成功之后,通过true、false决定是否跳转

    /**
    * 新增版本
    *
    * @return
    */
    public String AddVersionInfo() {
    // 快捷菜单
    Integer code = Integer.parseInt(get("code").toString().trim());
    this.getmenu(code, this.getRequest());

    Baseversion entity = new Baseversion();
    this.copyPropertiesToBean(entity);
    if (this.bscs.AddBaseversion(entity)) {

    // hql.delete(0, hql.length());
    // hql.append("<script>alert('添加成功!可在配置标准版本中添加监测标准及标准元素');if(window!=parent){parent.frames['ovfirame'].location='QueryBasespace.action?code=")
    // .append(get("code")).append("&dic=").append(get("dic")).append("&xmlb=").append(get("xmlb"))
    // .append("';parent.document.getElementById('popCloseBox').click();};</script>");
    // out.print(hql.toString());
    this.hql.delete(0, hql.length());
    hql.append("<script> if(confirm('添加成功!是否现在配置元素?')){")
    .append("if(window!=parent){parent.document.getElementById('popCloseBox').click();")
    .append("parent.frames['ovfirame'].location='OpenConfigVersionElement.action?id=").append(entity.getId()).append("&code=").append(code).append("'")
    .append("}")
    .append("}else{")
    .append("if(window!=parent){parent.document.getElementById('popCloseBox').click();")
    .append("parent.frames['ovfirame'].location='../Baseversion/QueryVersion.action?").append("&code=").append(code).append("'")
    .append("}")
    .append("}</script>");


    out.print(hql.toString());
    // out
    // .println("<script> "
    // + "if(confirm('添加成功!是否现在配置元素?')){"
    // + "window.location.href='OpenConfigVersionElement.action?id="
    // + entity.getId() + "&code=" + code + "' }else{window.history.go(-1);}"
    // + "</script>");
    } else {
    out
    .println("<script>alert('添加失败!');window.history.go(-1);</script>");
    }
    return null;
    }

  • 相关阅读:
    6174问题
    阶乘的精确值
    小学生算术
    Primer回顾 数组和指针
    Primer回顾 标准库类型
    绪论
    字符串的存储
    条款39:明智而审慎的使用private继承
    条款34:区分接口继承和实现继承
    条款33:避免遮掩继承而来的名称
  • 原文地址:https://www.cnblogs.com/meimao5211/p/3207651.html
Copyright © 2011-2022 走看看