jquery img选择

时间:2010-01-07 20:36:51

标签: jquery jquery-selectors

我有一个带有img的h4就像这样。我将点击功能绑定到h4。这很好用。但是我无法在其中选择img。我想选择img以便用.attr(“src”)重放src attr.replace(“up”,“down”);

<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”)在那里; - )

3 个答案:

答案 0 :(得分:7)

var img = $("img", this); // Gets the image within 'this'

第二个参数是选择器的上下文。在完整代码中,它看起来像这样:

$(".collapsable_head").click(function(){
  var img = $("img:first", this).attr("src");
  alert(img);
});

答案 1 :(得分:5)

你有没有尝试过:

jQuery(this).find('img').attr('src')

应该和Jonathans的答案一样。

答案 2 :(得分:0)

  $(function(){
      $("img").on('error', function() {
          $(this).attr('src',"/Files/446/178/themeblue/images/nopic.jpg");
      });   
 });