作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想显示/控制台$(this)
的子内容。请参阅下面的代码:
<div id="thumb-2" class="thumb">
<span id="info-2" class="blurb">More Info</span>
</div>
<div id="thumb-3" class="thumb">
<span id="info-3" class="blurb">Atlast</span>
</div>
<script>
$(document).ready(function(){
$(this).click(function(){
console.log($(this).children('.blurb').text());
});
});
</script>
但它在控制台中没有显示任何内容。
输出将是:
- When I click div with id 'thumb-2', it will console as 'More Info'
- When I click div id with 'thumb-3', it will console as 'Atlast'
最佳答案
您没有将父控件传递给 jQuery。
使用关联的类thumb
来查找该元素的子元素。
$(function() {
$('.thumb').click(function() {
console.log($(this).children('.blurb').text());
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="thumb-2" class="thumb">
<span id="info-2" class="blurb">More Info</span>
</div>
<div id="thumb-3" class="thumb">
<span id="info-3" class="blurb">Atlast</span>
</div>
关于jquery - 如何在 jQuery 中显示子元素的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56749228/
我是一名优秀的程序员,十分优秀!