try:
<body onload="next('2.asp')">
<script>
function next(url){
    document.form1.submit();
    location = url;
}
</script>
<form name=form1 action=1.asp target="_blank" method=post>
<input>
</form>

解决方案 »

  1.   

    兄弟为何还来这个onload="next('2.asp')"?
      

  2.   

    当然了。先submit.根本就不执行location
    加了alert(),可能是影响速度了
      

  3.   

    很显然,submit后页面就提交了,就不再运行此页面了,当然后面的没理由再执行下去了!
      

  4.   

    除了fason(【阿信(你是我的温柔)】) 的方法外,兄弟们还有什么高招吗?