<html>
<head>
<script type="text/javascript">
function closeed(){
var isIE = document.all?true:false;
if(isIE){
window.opener = "";
window.open("","_self");
window.close();
}
else{
/*FF 还要在 about:config 允许脚本脚本关闭窗口*/
window.close();
}
}
</script>
</head>
<body>
<a href="javascript:void 0;" title="liehuo.net" οnclick="closeed()">关闭</a>
</body>
</html>