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

在一个form中实现多个action动作

时间:2015-10-06 20:44:51      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

转自:http://blog.sina.com.cn/s/blog_9b9a08c701017dz6.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
<head> 
<title>Untitled Document</title> 
<script language="JavaScript"> 
function act1() 
{ 
document.testForm.action="a.jsp"; //testForm为form表单的name
document.testForm.submit();
} 
function act2() 
{ 
document.testForm.action="b.jsp"; 
document.testForm.submit();
} 
</script> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
</head>
<body> 
<form name="testForm" method="post" action="">  //action为""
  <input name="Name" type="text" id="Name"> 
  <input type="button" name="Button" value="Act1" onClick="act1();"> 
//onClick的函数名不能与name相同,此处name="Button"不能写成name="act1()" <input type="button" name="Submit2" value="Act2" onClick="act2();"> </form> </body> </html>
注:(1)input的type可以为button,submit,image等。
    (2)script中的function的document.testForm.action="",action可以为"a.jsp"或者"add.action"

在一个form中实现多个action动作

标签:

原文地址:http://www.cnblogs.com/gugibv/p/4857678.html

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