我已经制作了 web 服务,并且正在使用 webmethod 从中获取数据。我制作了两个函数是否可以使用两个 parseJSON 函数在单个函数中调用单个 websrvice?
它随机向我显示数据我希望数据显示在两个不同的选项卡中。有时它仅显示在单个选项卡中,有时它显示在错误的选项卡中。
下面是一段代码
function contacts(){
$.ajax({
type: 'POST',
url: webMethod,
processData: true,
data: { 'country': 'india' },
dataType: "jsonp",
jsonpCallback: 'parseJSON',
contentType: "application/json; charset=utf-8",
success: function (data) {
$detail = $("div.presenter-tabs");
$("div#india", $detail).html($('#contactUsTemplate').render(data));
},
error: function (response, status, data) {
var c = status; //For testing purpose
}
});
$.ajax({
type: 'POST',
url: webMethod,
processData: true,
data: { 'country': 'out of india' },
dataType: "jsonp",
jsonpCallback: 'parseJSON',
contentType: "application/json; charset=utf-8",
success: function (data) {
$detail1 = $("div.presenter-tabs");
$("div#outofindia", $detail1).html($('#contactUsTemplate').render(data));
},
error: function (response, status, data) {
var c = status; //For testing purpose
}
});
}