<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
喜欢这个
答案 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'});
});