网页制作,什么代码可直接关闭窗口?

来源:百度知道 编辑:UC知道 时间:2024/05/19 16:40:06
网页制作,我做了一个网页中有个“退出”选项,我想直接点中它的话,直接关闭当前窗口,不用返回主页,有会的朋友吗?麻烦告之一下!谢谢!

<script language="JavaScript">
//-->
window.open('MenuMain.asp','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=,height=,top=0,left=0,bottom=0,right=0');
window.opener = "meizz"; //加了这句代码IE5.5+不会有关闭提示
window.close();
//--
</script>