<form id="form1" name="form1" method="get" action="test.html">
<input name="action" type="submit" onclick="type.value='1'" />
<input name="action" type="submit" onclick="type.value='2'" /> <input type="hidden" id="type" value="">
</form>然后在服务端根据request("type")进行判断,决定进行什么操作

解决方案 »

  1.   

    <form action="#" enctype="multipart/form-data" method="post" name="from" id="from">
    //一堆需要填写填写的内容
    <input name="Submit1" type="submit" onclick="resume_chang(this);" value="调整" />
    <input name="Submit2" type="button" onclick="resume_del(this);" value="删除" />
    ……
    </form><script language="javascript" type="text/javascript"> function resume_chang(oSubmit){
    document.from.action = yourActionUrl;
    oSubmit.disabled = true;
    document.from.submit();
    } function resume_del(oSubmit){
    document.from.action = yourActionUrl;
    oSubmit.disabled = true;
    document.from.submit();
    }</script>