自助退出按钮

时间:2014-11-03 14:38:16

标签: javascript exit

我用JS打开了我的页面,

<a href="javascript:openNewWindow();">

现在,网页将在_self中打开。我需要找到一种获取链接的方法,这将关闭我的窗口。这不起作用:

<a href="javascript:window.close();">

现在该怎么办?谁知道关闭自我窗口的更好方法?第二个脚本 位于打开的页面中。

1 个答案:

答案 0 :(得分:-2)

这是对我之前回答的更正:

newwindow=window.open();
newdocument=newwindow.document;
newdocument.write("Hello World.<input type='button' value='close' onclick='window.close()' />");
newdocument.close();

如你所见,window.close()工作正常。

对于特定示例,您可以使用此 - &gt;创建2个文件: 1. windowOpener.html

<html>
<body>
    <input type="button" value="open" onclick="window.open('newWindow.html')" />
</body>
</html>

2。 newWindow.html

<html>
<body>
    <input type="button" value="close" onclick="window.close()" />
</body>
</html>

如果您要运行windowOpener.html并点击“打开”&#39;它将打开“newWindow.html”#。点击&#39;关闭&#39;在新打开的窗口中,将关闭它。瞧。