码迷,mamicode.com
首页 > 其他好文 > 详细

document.form.command.value

时间:2016-01-02 06:59:22      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

问题:在一个JSP页面中需要多个提交按钮,每个按钮点击后需要把同一个form提交到不同的页面进行处理

解决:用JS。

<html>
<head>
<title>一个表单、多个提交按钮、提交到多个不同页面</title>
</head>

<script>
function sm1(){
   document.getElementByIdx("form1").action="1.jsp";
   document.getElementByIdx("form1").submit();
}
function sm2(){
   document.getElementByIdx("form1").action="2.jsp";
   document.getElementByIdx("form1").submit();
}
</script>

<body>
<form action="" method="post" id="form1">
 <input name="mytext" type="text" id="mytext" />
 <input name="bt1" type="button" id="bt1" value="提交到1.jsp" onclick="sm1()" />
 <input name="bt2" type="button" id="bt2" value="提交到2.jsp" onclick="sm2()" />
</form>
</body>
</html>

document.form.command.value

标签:

原文地址:http://www.cnblogs.com/qingsong/p/5094048.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!