当前位置: 代码迷 >> Web前端 >> form.submit()步骤缺陷
  详细解决方案

form.submit()步骤缺陷

热度:271   发布时间:2012-09-05 15:19:35.0
form.submit()方法缺陷
<SCRIPT type='text/javascript'> 
function firstpage(){ 
var theform=document.getElementById('fmcc'); 
theform.action=theform.action+'?curpage=2';
theform.submit();
}
</SCRIPT>

?用这种方式在action后面添加参数,可以提交,但在问号后添加的参数不能传递,前台地址栏为:

http://localhost:8080/pageTest/lpm/step.action?? 没有带上参数

二、

?

<SCRIPT type='text/javascript'> 
function firstpage(){ 
var theform=document.getElementById('fmcc'); 
theform.action=theform.action+'?curpage=2';
document.location.href=theform.action;
}
</SCRIPT>

?用这种方式可以传递成功,前台地址栏位:

http://localhost:8080/pageTest/lpm/step.action?curpage=2?有带上参数

  相关解决方案