我觉得这很简单。不知道为什么这会导致 Mobile Safari 出现问题。
var rowIndexArr = [];
var rowDatas = {"11480":{"tags":["Automotive"]}};
alert('still working'); // <-- works fine
alert(rowDatas[11480].tags[0]) // <-- will alert "Automotive";
// what appears to be breaking the code
for(var index in rowDatas){
rowIndexArr.push(index);
}
alert('still working?'); // <-- dead at this point.