本文介绍了打开弹出窗口后如何关闭父窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是关于在线考试..
使用Javascript我可以从下拉列表中选择域名后打开一个弹出窗口进行测试(.net,来自父窗口的java,oracle)。
This is regarding online exam..
Using Javascript i am able to open a popup window for taking test after selecting the domain from the dropdownlist (.net,java,oracle) from parent window.
function basicPopup(url)
{
popupWindow = window.open(url, 'popUpWindow',
'height=500,width=500,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no, status=yes');
}
但是如何在打开弹出窗口后关闭父窗口。
But how to close the parent window after a popup window is opened.
推荐答案
popupWindow.close();
由 Sergey Alexandrovich Kryukov 引用 Solution 2 。
<!DOCTYPE html>
<html>
<body>
<p>Click the button</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
window.open("http://www.google.co.in", "", "width=1300, height=700");
window.parent.close();
}
</script>
</body>
</html>
这篇关于打开弹出窗口后如何关闭父窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!