标签:refresh oca 窗口 实现 父窗口 res function ref str
一、JS实现关闭当前子窗口,刷新父窗口
JS代码如下:
<script>
function refreshParent() {
window.opener.location.href = window.opener.location.href;
window.close();
}
</script>
标签:refresh oca 窗口 实现 父窗口 res function ref str
原文地址:http://www.cnblogs.com/hyq0002013/p/6058126.html