87,990
社区成员
发帖
与我相关
我的任务
分享
function newNode() {
var box = '';
return function() {
$.ajaxSettings.async = false;
$.getJSON("test.json", function(data){
$.each(data,function(i,data) {
box = document.createElement('div');
box.className = 'wf-box '+ i;
//alert(i);
//alert(data);
});
});
return box;
}
}