我需要为具有“tableClass”类的表分配样式。我有以下标记。
<table border="0" cellpadding="0" cellspacing="0" class="tableClass">
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" class="tableClass"> <-- Need to add a style here
<tr class="colheadrowclass">
.. some markup here
</tr>
more markup
<tr id="dataRow" class="datarowclass">
</tr>
</table>
</td>
</tr>
</table>
从 开始datarowclass
,我需要遍历该类的第一个表并tableClass
为其添加样式。
这对我有用,但我想知道是否有更快的方法。
$(".datarowclass").parents("table").eq(0).css("hieght", "500px");