怎么确定form表单里点击了的是哪个submit按钮
我有个表单里面有两个按钮,分别是“同意”和“拒绝”我想根据不同的点击按钮的操作执行不同的操作(写数据库)请问这要怎么写?...
我有个表单里面有两个按钮,分别是“同意”和“拒绝”
我想根据不同的点击按钮的操作执行不同的操作(写数据库)
请问这要怎么写? 展开
我想根据不同的点击按钮的操作执行不同的操作(写数据库)
请问这要怎么写? 展开
2个回答
展开全部
<html>
<head>
<title>Untitled Document</title>
<script type="text/javascript">
function agree(){
document.testForm.answer.value = "你点了同意";
//document.testForm.submit();
}
function Unagree(){
document.testForm.answer.value = "你点了拒绝";
//document.testForm.submit();
}
</script>
</head>
<body>
<form action="noPage" name=testForm>
信息:<input type="text" name="answer" />
<input type="button" onclick="agree()" value = "同意" />
<input type="button" onclick="Unagree()" value = "拒绝" />
</form>
</body>
</html>
<head>
<title>Untitled Document</title>
<script type="text/javascript">
function agree(){
document.testForm.answer.value = "你点了同意";
//document.testForm.submit();
}
function Unagree(){
document.testForm.answer.value = "你点了拒绝";
//document.testForm.submit();
}
</script>
</head>
<body>
<form action="noPage" name=testForm>
信息:<input type="text" name="answer" />
<input type="button" onclick="agree()" value = "同意" />
<input type="button" onclick="Unagree()" value = "拒绝" />
</form>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用javascript不就行了。
<input type="button" value="同意" onclick="fun1()">
<input type="button" value="拒绝" onclick="fun2()">
js的函数
fun1(){
form.action=xx.jap?value=tongyi;
form.submit;
}
fun2 省略。
做动态网站,简单的js是必须要会的
<input type="button" value="同意" onclick="fun1()">
<input type="button" value="拒绝" onclick="fun2()">
js的函数
fun1(){
form.action=xx.jap?value=tongyi;
form.submit;
}
fun2 省略。
做动态网站,简单的js是必须要会的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询