弹出窗口中的链接不关闭窗口?

时间:2009-02-27 18:01:05

标签: javascript html

我有一些html代码,但是当我点击链接时,它没有关闭:

<html>
   <head>
   <title></title>
   </head>
<body>
    <h2>Members Only</h2>
    <p>You must be a member.</p>
    <p>Please Sign In or Create an Account.</p>
    <a href="javascript: self.close ()">Close this Window</a>
</body>
</html>

2 个答案:

答案 0 :(得分:3)

我刚删除了空格,效果很好:

<a href="javascript:self.close()">Close this Window</a>

答案 1 :(得分:1)

弹出窗口很糟糕,改为使用modal dialog,特别是对于像通知一样简单的事情。

话虽如此,试试这个:

 <a href="javascript:window.close()">Close this Window</a>