日期:2014-05-16 浏览次数:20500 次
<html>
<script>
var ChildPage;
function openw(){
ChildPage = window.open("page1.html", "_blank", "height=600, width=800");
}
function refrashPage(){
ChildPage.close();
window.location = window.location;
}
</script>
<body>
<input type="button" onclick="openw()" value="弹出">
</body>
</html>