divToUpdate.removeData(); //clean out any existing innerHTML div content first divToUpdate.html(data);
看起来它从来没有得到我的divToUpdate.html(数据),因为某种原因,它调用removeData();
做就是了
divToUpdate.html("");
要么
divToUpdate.empty();