标签: javascript jquery html button onclick
我有一个弹出窗口的页面。单击确定按钮,当前选项卡应关闭。 ok按钮是一个html输入标记。我在很多方面尝试了javascript close方法并在网上搜索。但无法单独为firefox浏览器找到解决方案。请帮帮我。
答案 0 :(得分:2)
试试这个:
var button = document.getElementById("..."); button.click = function() { window.close(); }
其中...是按钮的ID。
...