1 2 64 65 66 _________________________________________________ 67 var s = ""; 68 var f= ""; 69 var g=""; 70 71 72 73 $.each(response, function(index, value) { 74 s+='
'; 75 s+=' '; 80 if(index==9) 81 return false; 82 }) 83 $("#news1").append(s); 84 $.each(response, function(index, value) { 85 if(index<=9) 86 {} 87 else 88 { 89 f+='
'; 90 f+=' '; 95 if(index==20) 96 return false; 97 } 98 99 })100 $("#news2").append(f);101 $.each(response, function(index, value) { 102 if(index<=20){}103 else104 {105 g+='
';106 g+=' ';111 if(index==30)112 return false;113 } 114 115 })116 $("#news3").append(g);