Как получить детей из селектора $ (this)? - PullRequest
2138 голосов
/ 20 ноября 2008

У меня есть макет, похожий на этот:

<div id="..."><img src="..."></div>

и хотел бы использовать селектор jQuery для выбора дочернего элемента img внутри div при нажатии.

Чтобы получить div, у меня есть этот селектор:

$(this)

Как я могу получить ребенка img с помощью селектора?

Ответы [ 16 ]

20 голосов
/ 26 июня 2013

jQuery's each - это один из вариантов:

<div id="test">
    <img src="testing.png"/>
    <img src="testing1.png"/>
</div>

$('#test img').each(function(){
    console.log($(this).attr('src'));
});
14 голосов
/ 26 июля 2014

Вы можете использовать Child Selecor для ссылки на дочерние элементы, доступные в родительском элементе.

$(' > img', this).attr("src");

И ниже, если у вас нет ссылки на $(this), и вы хотите сослаться на img, доступный в div из другой функции.

 $('#divid > img').attr("src");
11 голосов
/ 21 июня 2015

Также это должно работать:

$("#id img")
6 голосов
/ 28 декабря 2016

Вот функциональный код, вы можете запустить его (это простая демонстрация).

Когда вы щелкаете по DIV, вы получаете изображение разными способами, в этом случае «this» - это DIV.

$(document).ready(function() {
  // When you click the DIV, you take it with "this"
  $('#my_div').click(function() {
    console.info('Initializing the tests..');
    console.log('Method #1: '+$(this).children('img'));
    console.log('Method #2: '+$(this).find('img'));
    // Here, i'm selecting the first ocorrence of <IMG>
    console.log('Method #3: '+$(this).find('img:eq(0)'));
  });
});
.the_div{
  background-color: yellow;
  width: 100%;
  height: 200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div id="my_div" class="the_div">
  <img src="...">
</div>

Надеюсь, это поможет!

5 голосов
/ 23 августа 2017

У вас может быть от 0 до многих <img> тегов внутри вашего <div>.

Чтобы найти элемент, используйте .find().

Чтобы сохранить ваш код в безопасности, используйте .each().

Совместное использование .find() и .each() предотвращает ошибки нулевых ссылок в случае элементов 0 <img>, а также позволяет обрабатывать несколько элементов <img>.

// Set the click handler on your div
$("body").off("click", "#mydiv").on("click", "#mydiv", function() {

  // Find the image using.find() and .each()
  $(this).find("img").each(function() {
  
        var img = this;  // "this" is, now, scoped to the image element
        
        // Do something with the image
        $(this).animate({
          width: ($(this).width() > 100 ? 100 : $(this).width() + 100) + "px"
        }, 500);
        
  });
  
});
#mydiv {
  text-align: center;
  vertical-align: middle;
  background-color: #000000;
  cursor: pointer;
  padding: 50px;
  
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<div id="mydiv">
  <img src="" width="100" height="100"/>
</div>
3 голосов
/ 05 марта 2017

$(document).ready(function() {
  // When you click the DIV, you take it with "this"
  $('#my_div').click(function() {
    console.info('Initializing the tests..');
    console.log('Method #1: '+$(this).children('img'));
    console.log('Method #2: '+$(this).find('img'));
    // Here, i'm selecting the first ocorrence of <IMG>
    console.log('Method #3: '+$(this).find('img:eq(0)'));
  });
});
.the_div{
  background-color: yellow;
  width: 100%;
  height: 200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div id="my_div" class="the_div">
  <img src="...">
</div>
...