我知道我很愚蠢或其他什么,但对于我的生活,我无法让这个功能在 IE7+ 中工作,在所有其他非 IE 浏览器中工作:
/inbox/get_auth_replies(返回 JSON):
{"default_message":"Thank you, we have already recieved your request. A member of the team will contact you shortly.","repeated_message":"Thank you for contacting us. A member of the team will contact you shortly."}
jQuery:
var $keyword_id = 123;
$.post('/inbox/get_auto_replies', {keyword_id: $keyword_id}, function(resp) {
console.log(resp.default_message);
$('#inbox_default_message').val(resp.default_message);
$('#inbox_repeat_message').val(resp.repeated_message);
}, 'json');
在 IE 报告中:
SCRIPT5007:无法获取属性“default_message”的值:对象为空或未定义。
我可以看到它正在返回数据,但只是看不到/解析它?
我已经查看了 SO 上的所有内容,但似乎没有任何帮助。
任何帮助,将不胜感激。
谢谢。