我在.Net Web 应用程序中工作。
我同步完成了几个 ajax 调用(async:false),因为我需要在本地变量中获取 ajax 结果的值。
但是,如果我在进入 ajax 时使加载可见,则它在 Firefox、Chrome 和 IE 不支持中工作正常。
请帮帮我,有什么解决方法吗???
function findtempvalues(tempparam) {
var tempnamevalues = new Array();
$.ajax({
type: "POST",
url: "Services/Locale.asmx/templatename",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({ tempwidpath: tempparam }),
dataType: "json",
async: false,
success: function (result) {
tempnamevalues = result.d;
},
error: function () {
alert("error");
},
timeout: 3000
});
return tempnamevalues;
}