vave
Полезный
- Регистрация
- 22 Июн 2007
- Сообщения
- 467
- Реакции
- 16
- Автор темы
- #1
Подскажите, как в этом коде сделать так, что бы таблицы шли не в одну строчку а друг за другом?
Этот код достает из XML файла теги <flight> и размещает их друг за другом, а нужно друг под другом
<table id="test" border="1">
<thead>
<tr></tr>
</thead>
<tbody>
<tr></tr>
</tbody>
</table>
Этот код достает из XML файла теги <flight> и размещает их друг за другом, а нужно друг под другом
HTML:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery.ajax({
type: "GET",
url: "online.xml",
dataType: "xml", //
success: function(xml) {
jQuery(xml).find('flight').each(function() {
jQuery(this.attributes).each(function() {
jQuery('#test thead tr').append('<td>' + this.name + '</td>');
jQuery('#test tbody tr').append('<td>' + this.value + '</td>');
});
});
}
});
});
</script>
<thead>
<tr></tr>
</thead>
<tbody>
<tr></tr>
</tbody>
</table>