$.ajax({
type: "GET",
url: "tester.php",
dataType: "text",
success: function(message) {
var tems = message.split(';');
if (tems.length<1) return false;
for (var i=0;i<tems.length;i++) {
eval(tems[i]);
}
}
})
Этот запрос получает такие данные :
self.putMessage("title", "England", "", "", "", "", "" );
self.putMessage("data", "", "March 17", "", "", "", "" );
self.putMessage("time", "", "", "18:20", "", "", "" );
self.putMessage("citi", "", "", "", "Sunderland", "", "" );
self.putMessage("home", "", "", "", "", "London", "" );
self.putMessage("nohome", "", "", "", "", "", "Norwich.") ......
Которые обрабатывает такая функция :
self.putMessage = function(title,data,time,citi,home,nohome) {
Как мне на страницу, вывести такую таблицу, с полученных данных :
<table width="468">
<tbody>
<tr>
<td class="title">title</td>
</tr>
<tr>
<td class="data" >data</td>
</tr>
<tr bgcolor="#cfcfcf">
<td width="45" height="18">time</td>
<td width="186" align="right">citi</td>
<td width="51" align="center">home</td>
<td width="186">nohome</td>
</tr>
</tbody>
</table>
}