首页 > 其他 > 详细

表单怎么根据不同条件提交到不同的页面

时间:2019-05-18 14:26:01      阅读:114      评论:0      收藏:0      [点我收藏+]

本章节介绍一下如何根据不同的情况使表单跳转到不同的页面,下面就通过一个例子做一下简单介绍。

代码实例如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css">
body{
margin:0;
padding:0;
}
ul li{
list-style:none;
}
</style>
<script type="text/javascript">
window.onload=function(){
var antzone=document.getElementById("antzone");
var qq=document.getElementById("qq");
var theform=document.theform;
antzone.onclick=function(){
theform.action="http://www.softwhy.com";
theform.submit();
}
qq.onclick=function(){
theform.action="http://www.qq.com";
theform.submit();
}
}
</script>
</head>
<body>
<form action="#" name="theform"/>
<ul>
<li>姓名:<input type="text" value="蚂蚁部落"/></li>
<li>密码:<input type="password" value="123456"/></li>
<li>
<input type="button" id="antzone" value="蚂蚁部落"/>
<input type="button" id="qq" value="腾讯集团"/>
</li>
</ul>
</form>
</body>
</html>

 

 

 

转自  http://www.softwhy.com/article-4320-1.html

如有侵权,请联系删除,谢谢

表单怎么根据不同条件提交到不同的页面

原文:https://www.cnblogs.com/linguosen/p/10885499.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!