<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>测试this.form</title>
<script>
function change_form(f){
f.target = "_blank";
f.submit();
}
</script>
</head><body>
<form action="" method="post" name="form">
<input type="button" onclick="change_form(this.form)" name="input" value="按钮" />
<input name="submit" type="submit" value="submit" />
</form></body>
</html>问下这里哪里错了,怎么改??
当我把 <input name="submit" type="submit" value="submit" />  这个submit去掉后就好了,这是为什么???
有没有解决办法