帮助jQuery选择器

时间:2010-01-19 16:58:08

标签: jquery

 <div class="divorder">     
     <table class="formfieldsmall">       
        <tr>
           <td style="width: 2%;">
               <img class="trigger" src="/SPLockerWebApp/Assets/themes/default/images/plus.png" />               
           </td>
        </tr>
     </table>
</div>

我需要更改图片,但以下内容无法在IE中使用:

$(this).children()[0].children[0].all[2].src

有人可以告诉我正确的选择吗?我在divorder上绑定了click事件。

$(this).next("trigger").src喜欢这个

2 个答案:

答案 0 :(得分:1)

$(this).next("trigger").attr("src", "some/path/to/image.png");

答案 1 :(得分:1)

使用find方法

可能会更好
$('.divorder').click(function(){
  $(this).find('img.trigger').attr({src: 'some/image/path.png'});
});