关闭firefox onclick按钮中的当前选项卡

时间:2015-05-28 19:29:02

标签: javascript jquery html button onclick

我有一个弹出窗口的页面。单击确定按钮,当前选项卡应关闭。 ok按钮是一个html输入标记。我在很多方面尝试了javascript close方法并在网上搜索。但无法单独为firefox浏览器找到解决方案。请帮帮我。

1 个答案:

答案 0 :(得分:2)

试试这个:

var button = document.getElementById("...");
button.click = function() {
    window.close();
}

其中...是按钮的ID。