1.父頁面window.open()開啟新頁面
var targetWeb=null;
if(targetWeb){
targetWeb.focus();
}else{
targetWeb=window.open('https://segmentfault.com','segmentfault');
}
2.子頁面中關閉父頁面
window.opener.close();
發現子頁面無法關閉父親頁面,會提示:Scripts may close only the windows that were opened by it
但若換成:window.opener.location.href='https://www.hao123. com' 卻可以,請問是什麼原因
黄舟2017-06-26 10:54:27
");
myWindow.focus();
myWindow.opener.document.write("這是父視窗");
myWindow.close();
可以關閉掉子窗口,在子視窗中無效。