那就用模态窗口方式打开
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd
">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Untitled Document</title>
<script language="JavaScript" type="text/javascript">
function openNew(){
var arg = window.showModalDialog("B.html", 'a', "dialogWidth =315px;dialogHeight = 405px;help=0");
}
</script>
</head>
<body>
<input type="button" value="打开" onclick="openNew();">
</body>
</html>