Доброго всем времени. Ребят возник вопрос один по казалось бы такому простому методу как append. Вроде всё понятно, он ДОБАВЛЯЕТ в конец элемента то что мы хотим добавить. Но тогда какого чёрта он в нижеследующем кода ЗАМЕЩАЕТ полностью табличные данные, а не присоединяет их? Это отрывок из книги Джона Дакетта, суть проста, есть таблица, при клике по заголовка колонок происходит сортировка таблицы. Функции сортировки (метод sort()) различных данных (текстовых, чиловых, дат) определены в объекте compare. Больше всего интересует
строка 57. Ведь у нас уже есть на странице в момент открытия заполненная страница, мы создаём rows, вставляем туда элементы tr, сортируем их, и ПРИБАВЛЯЕМ методом append, почему предыдущие tr стираются? Я вроде бы как понимаю что где-то дело в том что rows содержит эти же объекты DOM, а не копии, видимо в этом что-то дело, но не могу всё равно доходчиво себе объяснить почему метод append, призванный ДОБАВЛЯТЬ, ЗАМЕЩАЕТ? Ребят подскажите пожалуйста как вы это видите? Сорри если туплю где-то конкретно, может уже перетрудился))
var compare = { // Declare compare object
name: function(a, b) { // Add a method called name
a = a.replace(/^the /i, ''); // Remove The from start of parameter
b = b.replace(/^the /i, ''); // Remove The from start of parameter
if (a < b) { // If value a is less than value b
return -1; // Return -1
} else { // Otherwise
return a > b ? 1 : 0; // If a is greater than b return 1 OR
} // if they are the same return 0
},
duration: function(a, b) { // Add a method called duration
a = a.split(':'); // Split the time at the colon
b = b.split(':'); // Split the time at the colon
a = Number(a[0]) * 60 + Number(a[1]); // Convert the time to seconds
b = Number(b[0]) * 60 + Number(b[1]); // Convert the time to seconds
return a - b; // Return a minus b
},
date: function(a, b) { // Add a method called date
a = new Date(a); // New Date object to hold the date
b = new Date(b); // New Date object to hold the date
return a - b; // Return a minus b
}
};
$('.sortable').each(function() {
var $table = $(this); // This sortable table
var $tbody = $table.find('tbody'); // Store table body
var $controls = $table.find('th'); // Store table headers
var rows = $tbody.find('tr').toArray(); // Store array containing rows
$controls.on('click', function() { // When user clicks on a header
var $header = $(this); // Get the header
var order = $header.data('sort'); // Get value of data-sort attribute
var column; // Declare variable called column
// If selected item has ascending or descending class, reverse contents
if ($header.is('.ascending') || $header.is('.descending')) {
$header.toggleClass('ascending descending'); // Toggle to other class
$tbody.append(rows.reverse()); // Reverse the array
} else { // Otherwise perform a sort
$header.addClass('ascending'); // Add class to header
// Remove asc or desc from all other headers
$header.siblings().removeClass('ascending descending');
if (compare.hasOwnProperty(order)) { // If compare object has method
column = $controls.index(this); // Search for column’s index no
rows.sort(function(a, b) { // Call sort() on rows array
a = $(a).find('td').eq(column).text(); // Get text of column in row a
b = $(b).find('td').eq(column).text(); // Get text of column in row b
return compare[order](a, b); // Call compare method
});
$tbody.append(rows);
}
}
});
});