标签: javascript jquery ajax
我希望在子窗口的URL发生更改时关闭子窗口,并使用jQuery在父窗口中打开该URL。有关如何做到这一点的任何想法?我尝试使用以下代码关闭子窗口,但它没有工作:
new_window = window.open(url, "_blank", "width=700,height=450,left=100,top=200") $(new_window).on('hashchange', function(e) { new_window.close() })