子页面刷新父页面的操作,jsp那种老项目

非弹窗页,而是跳转的子页是个新窗口页,要在新窗口页实现刷新父页面的列表

getDataByKeys()为父页面自定义的刷新列表方法,在此调用刷新,也可以换成reload(),就是变成刷新整个window窗口页面
//刷新父页面的查询
                function refreshParentQuery(){
                    try{ 
                        //alert(111);
                        //window.opener.reload();
                        window.opener.getDataByKeys('B1692684372642');
                    }catch(e){
                        try{ 
                            //alert(222);
                            //window.parent.opener.reload(); 
                            window.parent.opener.getDataByKeys('B1692684372642'); 
                        }catch(e2){ 
                            try{ 

                                //alert(333);
                                //window.parent.opener.opener.reload(); 
                                window.parent.opener.opener.getDataByKeys('B1692684372642'); 
                            }catch(e3){ 
                                
                            }
                        }
                    }
                }

 

posted @ 2024-02-21 15:16  下课后我要去放牛  阅读(78)  评论(0编辑  收藏  举报