问题描述
怎么在javascript里让struts表单提交
解决方案
解决方案二:
with(document.getElementById("formName")){method="post";action="<%=path%>/Action.do?action=";submit();}指定好路径就行了
解决方案三:
<script>document.getElementByName('form_name').submit();</script
解决方案四:
引用2楼believeyourself86的回复:
<script>document.getElementByName('form_name').submit();</script
错的document.getElementByName没有这个方法
解决方案五:
那是你form表单中没有这个属性吧,用document.getElementById也可以的。 或者直接document.forms["form"].submit();(form是提交表单的name)
解决方案六:
<html:buttonproperty="upload"onclick="dell()">删除</html:button>js:functiondell(){varflag=confirm("确定要删除吗?");if(flag==0){returnfalse;}else{document.forms(0).action="dellfiletype.do";document.forms(0).submit();}}
解决方案七:
写错了,是document.getElementByid('form_name').submit();
解决方案八:
<html:formaction="team.do?method=doAdd"method="post"focus="playerName"onsubmit="returncheck()">...