是关闭当前的文件窗口
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>open</title>
</head>
<body>
<input type="button" value="退 出" id="quit">
<script>
window.onload=function(){
//打开子窗口,显示newwindow.html这个
window.open("newwindow.html","newwindow1","width=400px,height=100px,left=100,top=0,toolbar=no,menubar=no,scrollbars=no,location=no,status=no");
var quit=document.getElementById("quit");
quit.onclick=function(){
window.close();
}
}
</script>
</body>
</html>
点击退出 文档不关闭
2019-12-02 10:34:03
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星