若要再次显示该网页,web浏览器需要重新发送您以前提交的信息



 

 

 若要再次显示该网页,web浏览器需要重新发送您以前提交的信息

在做项目的过程中需要在一个页面弹出一个窗口(dialog)

对物资进行匹配

当有多页物资时 

对第二页以后的物资进行匹配之后  匹配之后会弹出警告框

原来父页面的代码如下

 $(document).ready(function(){
     $("#matching").dialog({title:'月度物资安排列表',width:750,hight:400,autoOpen:false,modal:true,resizable:true});
});

原来子页面代码如下

   function submitCommit(materialId){
    var inputs= $("input[name='planId']:checked");
    if(inputs.length==0){
     alert("请选择一条月计划!");
  }else{
   if(confirm("确定已选择的月计划?")){
    document.plan.action="materialCmd.cmd?method=editPlanMaterialMatching&materialId="+materialId+"&planId="+$(inputs).attr("value");
    document.plan.submit();
    alert("月度安排匹配成功!");
    parent.document.location.reload();
    parent.close();
   }
  }
 }

后来将原父页面代码里增加如下

 $( "#matching" ).dialog({
   close: function(event, ui) {
    //window.location.reload();
    window.location.href = "materialCmd.cmd?method=listPlanMaterialManager&planId="+'${planId}'+"&planStatus="+'${planStatus}'+"&parameter="+'${parameter}'+"&planYear="+'${planYear}'+"&adjust="+'${adjust}'+"&pageNo="+'${pageNo}';
   }
   });

子页面里

注释掉这个行//parent.document.location.reload();

问题解决

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值