我想遍歷我的錶行,但我總是有一個錯誤(無法識別的表達式)。 每個函數被調用時都會出現錯誤。循環遍歷錶行
我該如何解決這個問題?
在此先感謝
這裏是我的代碼:
jQuery的
$("#searchValue").keyup(function() {
var table = $(this).siblings('table').not(':hidden');
$(table +" tr").each(function() {
});
});
HTML
<table id='tablePlanning' class='tablesorter'>
<thead>
<tr>
<th>PR Code</th>
<th>Klant</th>
<th>Description</th>
<th>Project status</th>
<th>Project Leader</th>
<th>Coordinator</th>
<th>Account manager</th>
<th>Billing</th>
<th>Start Datum</th>
<th>Hardware</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table id='tableProject' class='tablesorter'>
<thead>
<tr>
<th>Project ID</th>
<th>Description</th>
<th>Customer</th>
<th>Status</th>
<th>Max Hours</th>
<th>Achieved</th>
<th>Difference</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
僅有代碼的答案很少有很好的答案。解釋發生了什麼,用戶做錯了什麼,如何改變它等等。 –