只是想知道是否有人可以幫助我。需要幫助使用'for循環'從表中提取數據
我創建了一個表格,並使用Javascript我將所有數據提取並放入div。
$(function() {
$('table').each(function() {
var output = "",
table = $(this),
rowHead = table.find('tbody tr th'),
rowSubject = table.find('thead tr th:not(:first-child)'),
rowContent = table.find('tbody tr td'),
copy = table.clone();
output += '<div class="mobiled-table">';
for (i = 0; i < rowHead.length; i++) {
output += '<div class="head">' + $(rowHead[i]).html() + '</div>';
for (j = 0; j < rowSubject.length; j++) {
output += '<div class="subject">' + $(rowSubject[j]).html() + '</div>';
output += '<div class="content">' + $(rowContent[i]).html() + '</div>';
}
}
output += '</div>';
$('table').append(output);
});
});
這一切都很好,除了.content類不能正常工作。我相信我正在使用錯誤的'for循環',或者我需要創建另一個'for循環'。請看看我的codepen,你會看到我的問題
http://codepen.io/anon/pen/JrKBf
我希望有人可以提供幫助。
您還沒有在css中創建**'.content' **類。 ?? – prog1011 2014-10-07 12:47:28