当前位置: 代码迷 >> ASP >> 怎么将一个input里的value通过form传到2个不同的.asp文件中
  详细解决方案

怎么将一个input里的value通过form传到2个不同的.asp文件中

热度:241   发布时间:2012-02-27 10:00:22.0
如何将一个input里的value通过form传到2个不同的.asp文件中
att..

------解决方案--------------------
<form name= "f ">
<input name= "year " type= "int " size= "8 " maxlength= "8 " />
<input type= "button " onclick= "document.f.action= '1.asp ';document.f.submit() ">
<input type= "button " onclick= "document.f.action= '2.asp ';document.f.submit() ">
</form>
  相关解决方案