1.
<input type="button" name="save" value="生成表格"onclick="javascript:Save();">
<input type="button" name="commit" value=" 提交 "onclick="javascript:Commit();">
2.
function Save()
{
var theForm=document.projectSetForm;
theForm.action="scoreOperation.do?do=creat";
theForm.submit();
}
function Commit()
{
var theForm=document.projectSetForm;
theForm.action="projectSet.do?do=save";
theForm.submit();
}
3.
<html:form action="project/projectSet.do" method="POST" >
</html:form>