一个表单两个提交按钮的实现

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>一个form两个提交按钮,分别提交到两页面</title>
<script type="text/javascript">
function save()
{
document.form1.action="a.asp";
document.form1.submit();
}

function send()
{
document.form1.action="b.asp";
document.form1.submit();
}
</script>
</head>
<body>
<form name="form1" method="post"> <!--method 必须写-->
<input type="text" name="username" value="scott">
<input type="button" value="发送" onclick="send();">
<input type="button" value="保存" onclick="save();">
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>一个form两个提交按钮,分别提交到两页面</title>
<script type="text/javascript">
function send()
{
if (i==1)
{document.form1.action="b.asp";}
else
{document.form1.action="a.asp";}
document.form1.submit();
}
</script>
</head>
<body>
<form name="form1">
<input type="text" name="username" value="scott">
<input type="button" value="发送" onclick="send(0);">
<input type="button" value="保存" onclick="send(1);">
</form>
</body>
</html>

  

时间: 2024-10-24 00:24:54

一个表单两个提交按钮的实现的相关文章

jsp实现一个表单多个提交按钮

<input type="button" value="删除" onclick="javascript:window.open('gushi_delet.asp?id=<%=rs("gushi_id")%>')"/>

php 一个表单有多个按钮判断是哪个按钮提交的

if(!empty($_POST['submit1'])) { $fileValue = "file1"; } else if(!empty($_POST['submit2'])) { $fileValue = "file2"; }else if(!empty($_POST['submit3'])) { $fileValue = "file3"; }else if(!empty($_POST['submit4'])) { $fileValue =

一个表单、多个提交按钮、提交到多个不同页面

<html> <head> <title>一个表单.多个提交按钮.提交到多个不同页面</title> </head> <script> function sm1(){ document.form1.action="1.php"; document.getElementByIdx("form1").submit(); } function sm2(){ document.form1.action=

关于一个表单form包含多个提交动作submit的解决方法

在开发工作共我们往往会遇到一个表单需要包含多个action不同的提交动作,这时候就不能在使用submit按钮来进行提交了,下面提供通过js来实现这一功能的方法 <form name="demo" method="post"> <!--YOUR DATA AREA--> <input type="button" value="添加" onclick="addAction()"&g

yii 一个表单提交多个模型数据

正在需要的时候发现了这个大牛的博文,动手实践过后,记录在此. --user表 Create Table: CREATE TABLE `user` (   `id` int(11) NOT NULL AUTO_INCREMENT,   `username` varchar(45) DEFAULT NULL,   `userpass` varchar(45) DEFAULT NULL,   `profile_id` int(11) DEFAULT NULL,   PRIMARY KEY (`id`)

在javaweb项目里如何防止一个表单重复提交

1:利用javascript防止表单重复提交() 以上2种方法都是利用javascript来防止用户反复点击提交按钮来提交页面,但是对于表单提交后用户点击刷新按钮导致表单重复提交以及用户提交表单后点击后退按钮回退到表单页面后再次提交是没有效果的.那么针对这2种情况应该如何处理呢??

ASP.NET MVC 搜索+保存搜索结果.2个按钮共用一个表单

想要实现的效果,1.搜索功能 2.搜索结果保存到text功能 前台代码 一个表单2个按钮,通过JS代码来修改form的action,来实现调用不同的后台代码 <form name="form1" action="~/Card/List" method="get" > <span class="label label-success">卡号:</span> <input class=&q

给一个表单提交绑定一个点击事件

如果给一个表单绑定一个点击事件会发生什么事情 <input type="submit" name="button" value="提交内容" class="btn btn-primary" /> (提交快捷键: $(".btn").click(function(){ window.alert("add"); }) 如上面所示的:会先执行点击事件,然后再进行提交,这样能够进行验

struts2 文件的上传下载 表单的重复提交 自定义拦截器

文件上传中表单的准备 要想使用 HTML 表单上传一个或多个文件 须把 HTML 表单的 enctype 属性设置为 multipart/form-data 须把 HTML 表单的method 属性设置为 post 需添加 <input type=“file”> 字段. Struts 对文件上传的支持 在 Struts 应用程序里, FileUpload 拦截器和 Jakarta Commons FileUpload 组件可以完成文件的上传. 步骤:1. 在 Jsp 页面的文件上传表单里使用