我有一個表是這樣的:如何在不使用循環的情況下突出顯示HTML表格列?
<table>
<thead>
<tr>
<th id="col-1"><input type="button" class="some" value="Company" /></th>
<th>name</th>
<th>Adress</th>
<th>Zip</th>
<th>Place</th>
<th>Country</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td headers="col-1">Some ltd</td>
<td>some name</td>
<td>some street</td>
<td>some zip</td>
<td>some town</td>
<td>some country</td>
</tr>
<tr class="odd">
<td headers="col-1">Corp</td>
<td>some name</td>
<td>some street</td>
<td>some zip</td>
<td>some town</td>
<td>some country</td>
</tr>
</tbody>
</table>
奇數和偶數行有不同的亮點類oddHigh和evenHigh。
列標題,我想強調這樣的列點擊:
$(".some").live("click", function() {
var val = $(this).closest("TH, th").attr('id'),
col = $("td[headers="+ val +"]"),
// set odd/even
i = col.closest("TR, tr").hasClass("odd") ? "oddHigh" : "evenHigh";
col.hasClass("colHigh") ? col.removeClass("colHigh "+i) : col.addClass("colHigh "+i);
});
這凸顯了oddHigh整個列。
有沒有辦法突出取決於最接近的行的類沒有循環通過整個選擇?或者我需要設置colOdd到tr.odd TD ...和colEven到tr.even TD ..並使用2個獨立的報表?
我不認爲你可以離開沒有循環,但是你可以使用'jquery.each'方法簡化你的代碼。 – 2012-01-09 15:46:12