8.7w+
社区成员
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>index.htm</title>
<script>
function o(){
window.open("index.htm","","height="+document.getElementById("h").value+",width="+document.getElementById("w").value);
}
</script>
</head>
<body>
<input type=text id=w value="">
<input type=text id=h value="">
<input type=button value="open window" onclick="o()">
</body>
</html>