jquery – 如何在已选择的元素上进行子选择?

前端之家收集整理的这篇文章主要介绍了jquery – 如何在已选择的元素上进行子选择?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
标记
<div class="foo">
    <img src="loading.gif" class="loading" style="display: none;" />
</div>

JS:

$("div[class='foo']").click(function(e) {
    e.preventDefault();
    $(this).hide();
    $(/* somehow select the loading img of exactly this div with class foo (not others) */).show();
});

解决方法

$("div[class='foo']").click(function(e) {
    e.preventDefault();
    $(this).hide();
    $('img.loading',this).show();
});
原文链接:https://www.f2er.com/jquery/181588.html

猜你在找的jQuery相关文章