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' 却可以,请问是什么原因
神不在的星期二
相关分类