У меня есть h4 с img в нем, как это. Я привязываю функцию щелчка к h4. Это хорошо работает. Но я не могу выбрать IMG в нем. Я хочу выбрать img, чтобы заменить src attr на .attr ("src"). Replace ("вверх", "вниз"); .
<h4 class="collapsable_head">
<img id="up_down" class="icon" src="/crm/img/modifier_down.gif" alt="link"/>
<b>Classification Filter:</b>
</h4>
JavaScript:
$(".collapsable_head").click(function(){
$(this).next(".collapsable_body").slideToggle(500)
//None of the next lines return me the img object
src = jQuery(this).children('img').attr("src");
print(src);
src = $(this).next("#up_down").attr("src");
print(src);
src = $(this).next("#up_down").attr("src");
print(src);
return false;
});
Я хочу использовать ключевое слово "this", так как у меня там больше (".collapsable_head"); -)