0

以下函数用于使用 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);
   }    });

}

有什么建议么 ??

4

1 回答 1

0

jQuery.support.cors = true;

只需在调用服务之前添加这些行。

于 2013-09-05T07:23:29.510 回答