点击了按钮1 提交完成后自动触发按钮2让其自动提交 用JS怎么写 求代码
<formaction="?"method="post">参数名1:<inputtype="text"name="parm1">参数值:<inputtype="text"...
<form action="?" method="post" >
参数名1:<input type="text" name="parm1">
参数值:<input type="text" name="v1">
<input type="submit" value="按钮1" >
</form>
<form action="<?php echo $_POST["actionName"]?>" method="post" >
url地址:<input type="text" name="actionName">
参数名1:<input type="text" name="parm1">
参数值:<input type="text" name="v1">
<input type="submit" value="按钮2" >
</form>
点击了按钮1 提交完成后自动触发按钮2让其自动提交
用JS怎么写 求代码 展开
参数名1:<input type="text" name="parm1">
参数值:<input type="text" name="v1">
<input type="submit" value="按钮1" >
</form>
<form action="<?php echo $_POST["actionName"]?>" method="post" >
url地址:<input type="text" name="actionName">
参数名1:<input type="text" name="parm1">
参数值:<input type="text" name="v1">
<input type="submit" value="按钮2" >
</form>
点击了按钮1 提交完成后自动触发按钮2让其自动提交
用JS怎么写 求代码 展开
2个回答
展开全部
只能是调用Jquery方法,你的按钮方法是调用Jquery的方法吗?
----------AJAX例子---------------
//按钮和文本框加ID
$('#按钮1ID).bind('blur', function () {
var parm1=$("#parm1").val();
var v1=$("#v1").val();
//提交方法
$.ajax({
type: "post",
contentType: "application/json",
url: "Backstage/LoginService.asmx/UserExist",
data: JSON.stringify({"UserName":user}),
success: function (result) {
//按钮2的方法
},
error: function (response) {
var r = jQuery.parseJSON(response.responseText);
alert("Message: " + r.Message);
}
})
});
-------------------------------
如果是别的问题,不妨继续追问!望采纳!
----------AJAX例子---------------
//按钮和文本框加ID
$('#按钮1ID).bind('blur', function () {
var parm1=$("#parm1").val();
var v1=$("#v1").val();
//提交方法
$.ajax({
type: "post",
contentType: "application/json",
url: "Backstage/LoginService.asmx/UserExist",
data: JSON.stringify({"UserName":user}),
success: function (result) {
//按钮2的方法
},
error: function (response) {
var r = jQuery.parseJSON(response.responseText);
alert("Message: " + r.Message);
}
})
});
-------------------------------
如果是别的问题,不妨继续追问!望采纳!
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询