我正在尝试使用 Jquery 在父 div 的 sideblings 中找到图像。我想知道找到它的最佳和快速方法是什么。
html
more divs..and all generated dynamically..
<div>
other dynamically generated image...
<img src='haha1.jpg' />
<img src='haha2.jpg' />
</div>
<div>div 2</div>
<div>div 3</div>
<div>div 4</div>
<div>div 5</div>
more divs....
<div>
<button id='btn'/>
</div>
$('#btn').click(function(){
//I have to change image source by using parent() method....
})
谢谢您的帮助!