json.stringify不能在IE8及以下工作,json2.js使用

时间:2013-04-11 10:47:22

标签: json web-services internet-explorer .post stringify

以下是我的代码。它适用于IE8及以上版本,也适用于Chrome和FF ...之前我得到json undefined我使用json2.js现在我正在收到警报

"something went wrong pls try again"...

为什么它没有成功..还有什么方法可以检查IE8及以下服务器上的json响应?

$.post(serURL + '/saveForm', {'postdata': JSON.stringify(postJson)}, function(postRes){
  parsedData = jQuery.parseJSON(postRes);
  if (parsedData.Response.Header.Message == 'Success') 
  {
    alert("success")
  } 
 else {
    alert('Something went wrong pls try again..');
  }
}).error(function () 
  {
  alert("webservice issue");
})

0 个答案:

没有答案