狼人海牛皮肤改版:asp 网页跳转问题

来源:百度文库 编辑:高考问答 时间:2024/05/10 14:53:06
我有两个网页 A B

A是自然大的,(页面大小没有控制)有地址栏,标准按钮菜单等。

A里面有个form将数据传到B

我想按submit后跳出 width=570,height=60的页面
不想用?传数据 请问怎么办?
都没有看懂我的意思!!我是想form 的submit 提交到一个弹出页面(750*60)

<html>
<title>A</title>
<head>
</script>
<script language="JavaScript" type="text/JavaScript">
function gg(){
window.open ('B.html','跳转','width=570,height=60,top=0left=0,toolbar=no,resizable=no,location=no')
}
</script>
</head>
<body>
<input name="name1" type="button" onClick="javascript:gg();">
</body>
</html>

open 方式打开一个新页面