以下函数用于使用 jQuery 从 Web 服务获取信息。此代码在 IE 10 中运行良好,但在 IE 8 和 IE 9 中返回错误“No Transport”。
函数GetDemo(用户){
var webMethod = "http://---------/Service.asmx/Demo";
var parameters = '{"UserName":"'+ User + '"}';
$.ajax({
type: "POST",
url: webMethod,
data: parameters,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
if(typeof msg.d[0] !== "undefined") {
$("#Designation").html(msg.d[0]['Designation']);
}
else
{
// $("[title='Name']").val("");
}
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(xhr.responseText);
alert(thrownError);
} });
}
有什么建议么 ??