1

具有以下html结构:

<tr class="invisible">
    <td align="center">
        <a class="i_edit" data-target="30"></a>
    </td>
    <td class="category">
        <span class="f_type" style="background-image: url(/admin/assets/img/f_type_3.gif);"> Tests </span>
    </td>
    <td style="background-color: blue;">
        <select class="behaviour" name="behaviour" style="opacity: 1;">
            <option selected="" value="1" style="opacity: 1;">Por noticias destacadas</option>
            <option value="2" style="opacity: 1;">Por fecha</option>
        </select>
    </td>
</tr>

这是访问.i_edit内部课程的最佳/最快方式:

$('.behaviour').change(function(){

        $(this).closest('.i_edit').css('background-color', 'red'); //doesn't work
        $(this).parent().closest('.i_edit').css('background-color', 'red'); //doesn't work
        $(this).parent().parent().find('.i_edit').css('background-color', 'red'); //this works

    return false;

});
4

2 回答 2

8

这三个都没有。

使用$(this).closest('tr').find('.i_edit'), 因为它是可读的,并且当你的 DOM 结构发生变化时仍然可以工作。

另请参阅:http ://api.jquery.com/closest/ 。

于 2012-07-26T16:56:32.530 回答
-1

首先,做一个 .parents('tr.invisible) 然后做一个 .find('.i_edit')

$('.behaviour').change(function(){
    var obj_this = $(this)

    obj_this.parents('tr.invisible').find('.i_edit').css('background-color', 'red');

   return false;
});

如果您需要多次使用它,也可以将 $(this) 保存到一个变量中。

var obj_this = $(this)
于 2012-07-26T16:56:47.347 回答