I m使用jquery,我向一个网络服务站打电话,接收一些json数据。 这在火ox中是完美的,但出于某种原因,没有在电离层中。
$.ajax({
type: "GET",
url: "http://domain.com/Service.svc/data",
dataType: "json",
success: function(data) {
//In firefox this shows the right value of test but in IE8 just "0", why?
alert(data.d.test);
}
});
我知道,答复的内容(数据)是:
{"d":{"__type":"MyContent:#","test":888.75,"test2":592.5}}
因此,警报显示,有888.75英寸,但0英方位于互联网探测器。 我看不出为什么发生这种情况?