父Html代码1.html
<a onClick='window.open("1.php","Page","menubar=no, status=no, scrollbars=no, menubar=no, width=200, height=100");return false;'>
1.php代码:
echo '<script type="text/javascript">window.close();</script>';
必需: 关闭由“window.close();”完成的弹出窗口时,我需要从1.html发送ajax请求。我们怎么做呢?
答案 0 :(得分:1)
您可以在父窗口中调用任何JavaScript函数,如.php HTML:
window.opener.functionNameOfTheOpenerWindow();