【www.gdgbn.com--js教程】

<script language=javascript>
function dosubmit(){
window.open("first.php?var1="+window.form.var1.value+"&var2="+window.form.var2.value);
window.open("second.php?var1="+window.form.var1.value+"&var2="+window.form.var2.value);
return false;
}
</script>






 

<script>   
  function   mysubmit()   {   
      this.target="win1";   
      this.action="url1";   
      this.submit();   
   
      this.target="win2";   
      this.action="url2";   
      this.submit();   
  }   
  </script>   
   
     
     
  

找了段代码,不会用,谁帮着看看

本文来源:http://www.gdgbn.com/wangyezhizuo/22290/