如何获得基于某种条件的td

时间:2014-06-19 10:13:05

标签: javascript

我有一个HTML标签,如:

<tr class="evenRow" id="5"><td align="left" noWrap="nowrap">
    <input id="array_5" type="checkbox" value="on"/> </td>
    <td align="left" noWrap="nowrap">  SAMPLE </td>
    <td align="center" id="row_at_plant_0" noWrap="nowrap" class="data-current-value" row_index="2"> 1112</td>
    <td align="left" noWrap="nowrap">  1.0457 </td>
</tr>

我有这段代码,以便在选中<td>时获取row_index属性array_*。但它不适用于IE。

$('table#headerSelectTable input[id^="array_"]:checked').each(function() {
    input = $(this).parent().parent().find('.data-current-value');

    if ($(this).parent().parent().get(0).tagName == 'TR') {
        rows.push(input);
    }
});

0 个答案:

没有答案