<!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>
<form>
<input type="button" value="关闭子窗口" onClick="chiClose()">
</form>
<script>
var newWin = window.open('https://www.baidu.com','_blank','width=300,height=200,top=100,left=200');
function chiClose(){
newWin.close();
}
</script>
</body>
</html> |