<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<button id="btn">click</button>
<button id="btn2">close</button>
<script>
btn.onclick = function(){
//打开一个新的百度页面
window.open("http://www.baidu.com")
}
btn2.onclick = function(){
// 把自己的页面关掉
window.close()
}
</script>
</body>
</html>
04-20
613
04-11
468