jquery中怎样实现点击提交按钮把文本框的值提交到servlet
1个回答
展开全部
$("button").click(function(){
$.ajax({
type: 'post', //post方式
async: false, //是否异步,默认为true
url: "/xxx/xxx", //发送的接收地址。
data: { "a": 1, "b": "2" }, //参数
error: function (xhr) { //如果发生错误,在这里处理或提示
},
success: function (str) { //如果成功,返回一个结果,在这里处理
},
dataType: "text" //返回结果的类型。
});
});
$.ajax({
type: 'post', //post方式
async: false, //是否异步,默认为true
url: "/xxx/xxx", //发送的接收地址。
data: { "a": 1, "b": "2" }, //参数
error: function (xhr) { //如果发生错误,在这里处理或提示
},
success: function (str) { //如果成功,返回一个结果,在这里处理
},
dataType: "text" //返回结果的类型。
});
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询