html窗口通过javascript打开 - 关闭

时间:2015-03-12 03:52:08

标签: javascript html

我想通过我的登陆html页面中写的这个javascript关闭一个窗口。

window.open(location,"_self");

在位置html页面我有一个按钮,我尝试了

<div onclick="javascript:self.close();">Xyyyy</div>
<div onclick="javascript:window.close();">Xxxx</div>

它们都不起作用。

注意:我必须在同一个地方打开新窗口。

任何帮助都是适当的

2 个答案:

答案 0 :(得分:1)

我搜索了这个主题,this page就是我找到的。

html (不是我的)

<input type="button" name="Quit" id="Quit" value="Quit" onclick="return quitBox('quit');" />

JavaScript (不是我的)

function quitBox(cmd)
{   
    if (cmd=='quit')
    {
        open(location, '_self').close();
    }   
    return false;   
}

There is even a test page.

我也搜寻了一只小兔子(也不是我的)。

enter image description here

已更新:2015年3月12日

我搜索了这个主题,this page就是我找到的。

我使用此代码进行了测试并确认它不受支持。评论很好。

JavaScript (不是我的)

function close_window() {
  if (confirm("Close Window?")) {
    window.close();
  }
}

html (不是我的)

<a href="javascript:close_window();">close</a>

<a href="#" onclick="close_window();return false;">close</a>

答案 1 :(得分:0)

我没有完全得到你想要做的但是这里有一些提示:

window.open("https://slackoverflow.com");

用于打开一个全新的窗口(也可用于打开本地文件)

window.close();

window.close()关闭标签。

<a target="_blank" href="http://your_url_here.html">Page yada yada</a>

这可用于在新标签页中打开链接或页面。如果你玩这些一点点就会开始流行起来。

我希望其中一些想法有所帮助,并将帮助你整理你想要完成的事情:)