87,996
社区成员




$.ajax({
type: "POST",
url: "flight-result-online.aspx/Getleft",
data: JSON.stringify({ title: 'MP3', songname: 'Gulabi Ankhe' }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
populateleft(data);
},
error: function() {
alert('error');
}
});
$.ajax({
type: "POST",
url: "flight-result-online.aspx/Getright",
data: JSON.stringify({ title: 'MP3', songname: 'Gulabi Ankhe' }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
populateright(data);
},
error: function() {
alert('error');
}
});
var aaa=0;
$.ajax({
type: "POST",
url: "flight-result-online.aspx/Getleft",
data: JSON.stringify({ title: 'MP3', songname: 'Gulabi Ankhe' }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
populateleft(data);
aaa|=1;
if(aaa==3)//执行
},
error: function() {
alert('error');
}
});
$.ajax({
type: "POST",
url: "flight-result-online.aspx/Getright",
data: JSON.stringify({ title: 'MP3', songname: 'Gulabi Ankhe' }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
populateright(data);
aaa|=2;
if(aaa==3)//执行
},
error: function() {
alert('error');
}
});