Respostas:
O construtor jQuery aceita um segundo parâmetro chamado context
que pode ser usado para substituir o contexto da seleção.
jQuery("img", this);
O que é o mesmo que usar .find()
assim:
jQuery(this).find("img");
Se as imagens que você deseja são apenas descendentes diretos do elemento clicado, você também pode usar .children()
:
jQuery(this).children("img");
Você também pode usar
$(this).find('img');
que retornaria todos os img
s que são descendentes dodiv
$(this).children('img')
seria melhor. por exemplo, <div><img src="..." /><div><img src="..." /></div></div>
porque presumivelmente o usuário deseja encontrar imagens de primeiro nível.
Se você precisar obter o primeiro nível img
que está abaixo de um nível, pode fazer
$(this).children("img:first")
:first
apenas " exatamente a um nível " ou corresponde ao "primeiro" img
encontrado?
.children()
é de onde vem o "descer exatamente um nível" e :first
é de onde veio o "primeiro".
.find()
vez de.children()
this
já era uma referência ao que <div>
contém o arquivo <img>
, no entanto, se você tiver vários níveis de tag para percorrer a partir da referência que você tinha, definitivamente poderá compor mais de uma children()
chamada
Se sua tag DIV for imediatamente seguida pela tag IMG, você também poderá usar:
$(this).next();
As crianças diretas são
$('> .child-class', this)
Você pode encontrar todo o elemento img da div pai como abaixo
$(this).find('img') or $(this).children('img')
Se você quiser um elemento img específico, pode escrever assim
$(this).children('img:nth(n)')
// where n is the child place in parent list start from 0 onwards
Sua div contém apenas um elemento img. Então, para isso abaixo está certo
$(this).find("img").attr("alt")
OR
$(this).children("img").attr("alt")
Mas se sua div contiver mais elementos img como abaixo
<div class="mydiv">
<img src="test.png" alt="3">
<img src="test.png" alt="4">
</div>
não é possível usar o código superior para encontrar o valor alt do segundo elemento img. Então você pode tentar isso:
$(this).find("img:last-child").attr("alt")
OR
$(this).children("img:last-child").attr("alt")
Este exemplo mostra uma ideia geral de como você pode encontrar um objeto real no objeto pai. Você pode usar classes para diferenciar seu objeto filho. Isso é fácil e divertido. ie
<div class="mydiv">
<img class='first' src="test.png" alt="3">
<img class='second' src="test.png" alt="4">
</div>
Você pode fazer isso como abaixo:
$(this).find(".first").attr("alt")
e mais específico como:
$(this).find("img.first").attr("alt")
Você pode usar find ou filhos como o código acima. Para mais informações, visite Children http://api.jquery.com/children/ e localize http://api.jquery.com/find/ . Veja o exemplo http://jsfiddle.net/lalitjs/Nx8a6/
Maneiras de se referir a uma criança no jQuery. Resumi-o no seguinte jQuery:
$(this).find("img"); // any img tag child or grandchild etc...
$(this).children("img"); //any img tag child that is direct descendant
$(this).find("img:first") //any img tag first child or first grandchild etc...
$(this).children("img:first") //the first img tag child that is direct descendant
$(this).children("img:nth-child(1)") //the img is first direct descendant child
$(this).next(); //the img is first direct descendant child
Sem saber o ID do DIV, acho que você poderia selecionar o IMG assim:
$("#"+$(this).attr("id")+" img:first")
Tente este código:
$(this).children()[0]
$($(this).children()[0])
.
$(this:first-child)
$($(this).children()[x])
usar $(this).eq(x)
ou se você quiser o primeiro, apenas $(this).first()
.
Você pode usar um dos seguintes métodos:
1 encontrar ():
$(this).find('img');
2 crianças():
$(this).children('img');
O jQuery's each
é uma opção:
<div id="test">
<img src="testing.png"/>
<img src="testing1.png"/>
</div>
$('#test img').each(function(){
console.log($(this).attr('src'));
});
Você pode usar o Child Selecor para fazer referência aos elementos filho disponíveis no pai.
$(' > img', this).attr("src");
E o seguinte é se você não tem referência $(this)
e deseja fazer referência img
disponível dentro de uma div
de outra função.
$('#divid > img').attr("src");
Aqui está um código funcional, você pode executá-lo (é uma demonstração simples).
Quando você clica no DIV, obtém a imagem de alguns métodos diferentes, nesta situação "this" é o 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>
Espero que ajude!
Você pode ter de 0 a muitas <img>
tags dentro do seu<div>
.
Para encontrar um elemento, use a .find()
.
Para manter seu código seguro, use a .each()
.
O uso .find()
e o .each()
conjunto evitam erros de referência nulos no caso de 0 <img>
elementos, além de permitir o manuseio de vários <img>
elementos.
// 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>
$("body").off("click", "#mydiv").on("click", "#mydiv", function() {
event.stopImmediatePropagation()
o elemento para impedir que isso acontecesse.
$(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>
Você poderia usar
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
$(this).find('img');
</script>
Se seu img é exatamente o primeiro elemento dentro de div, tente
$(this.firstChild);