下面是我的代码。它适用于 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");
})