问题描述
如下形式跳转到新页面验证,结果返回XML格式的页面,如何将它自动关闭?$method_url="(一个验证页的URL,注:返回XML数据)";echo("<script>top.location.href='".$method_url."';window.opener.location.refresh();window.close();</script>");上面代码中"window.opener.location.refresh();window.close();"可以把父窗体刷新,但验证晚的XML页面不能关闭,而换成:window.opener.location.reload();window.close();就可以关闭XML页而转到我想要的页,但这样做有别的业务麻烦.请求支援. 问题补充:songhuidanoop 写道
解决方案
echo "<script>alert('ok');window.opener='_self';window.close();</script>";exit;或者require(dirname(__FILE__)."/".'template/login/comment.htm');
时间: 2024-11-05 06:14:31