我正在使用以下代码自动关闭当前窗口并使用变量中的新 URL 打开新窗口。
代码有问题,不再工作它正在关闭但没有重新打开新窗口。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv="prahma" content="no-cache">
<title>Auto Close and Open New window</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
var url = "http://www.myweb.com/weather_control.php?"+Math.random()
window.open(url,"","");
window.open('', '_self', '');
window.close();
</script>
</head>
<body onload="closeIt();">
</body>
</html>
您需要接受“允许始终弹出此站点”。