单击按钮关闭浏览器

单击按钮关闭浏览器

本文介绍了单击按钮关闭浏览器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hii
我想点击按钮关闭浏览器
我用了这个功能window.close()
它仅适用于铬,狐狸,而不适用于铬
因此,任何人都有任何想法在按钮上单击Firefox和chrome来关闭浏览器.

在此先感谢

hii
i want to close the browser on click the button
i used this function window.close()
it only work in ie not work in chrome, fire fox
so any one have any idea to close the browser in fire fox and chrome on button click

thanks in advance

推荐答案

function closePage()
{
   self.close();
}



希望它能起作用.



hope it works..


function CloseWindow()
{
  window.top.opener = null;
  window.close();
}


function closing() {
var answer = confirm("Do you wnat to close this window ?");
    if (answer){
        netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite');
        window.close();
    }
    else{
        stop;
    }
}


这篇关于单击按钮关闭浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 20:41