本文介绍了JQuery的AJAX语法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图找到正确的语法将varible传递给我的JQuery的帖子。
I am trying to find the correct syntax to pass a varible to my JQuery Post.
var id = empid;
$.ajax({
type: "POST",
url: "../Webservices/EmployeeService.asmx/GetEmployeeOrders",
data: "{empid: empid}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(result) {
alert(result.d);
}
我不认为数据:值是完全正确的。有人让我直?
I don't think the data: value is quite right. Someone set me straight?
谢谢!
推荐答案
这个怎么样:
var id = empid;
$.ajax({
type: "POST",
url: "../Webservices/EmployeeService.asmx/GetEmployeeOrders",
data: "{empid: " + empid + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(result){
alert(result.d);
console.log(result);
}
});
这篇关于JQuery的AJAX语法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!