1、JS实现关闭当前子窗口,刷新父窗口
JS代码以下:
<script> function refreshParent() { window.opener.location.href = window.opener.location.href; window.close(); } </script>
html页面代码以下:
<input type="button" id="btn1" class="btn" value="同意" disabled=true onclick="refreshParent()" />
2、JS子窗口与父窗口之间的调用
地址:http://azrael6619.iteye.com/blog/486079
上一篇 HighCharts使用
下一篇 HDU ACM 1050 Moving Tables->贪心或者?