嘿伙计们快速提问我在IE 8中得到以下错误’长度为空或不是对象’,任何人都有任何想法?反馈非常感谢……
function refresh() { $.getJSON(files+"handler.PHP?action=view&load=update&time="+lastTimeInterval+"&username="+username+"&topic_id="+topic_id+"&t=" + (new Date()),function(json) { if(json.length) { for(i=0; i < json.length; i++) { $('#list').prepend(prepare(json[i])); $('#list-' + count).fadeIn(1500); } var j = i-1; lastTimeInterval = json[j].timestamp; } }); }
解决方法
只需检查对象为null或空:
if (json && json.length) { // ... }
C’mon帮这显然很明显:-)