日期:2014-05-17  浏览次数:20687 次

html如何实现同一个表单中放置三个向不同url跳转的按钮
一个保存按钮提交数据,两个返回按钮向不同url跳转

------解决方案--------------------
是这个吗
<!DOCTYPE html>
<html>
<head>
<script>
function jump01(){
location.href='wwww.baidu.com'
}
</script>
</head>
<body>

<input type='button' value='exa' onclick='jump01()'/>
</body>
</html>