如何对已选择的元素进行子选择?

发布于 2024-09-14 08:41:38 字数 377 浏览 2 评论 0原文

标记:

<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();
});

Markup:

<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();
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

霓裳挽歌倾城醉 2024-09-21 08:41:43

你可以使用

$(this).find("img").show();

$(this).find("img.loading").show();

You could use

$(this).find("img").show();

or

$(this).find("img.loading").show();
我们的影子 2024-09-21 08:41:42

如果您想要给定元素的任何后代,您可以使用 find()

$(this).find(".foo");

如果您知道您只想要要搜索第一级子元素,可以使用 children()

$(this).children(".foo");

If you want any descendant of the given element you can use find():

$(this).find(".foo");

If you know you only want to search for the first-level children elements, you can use children():

$(this).children(".foo");
糖粟与秋泊 2024-09-21 08:41:41
$("div[class='foo']").click(function(e) {
    e.preventDefault();
    $(this).hide();
    $('img.loading', this).show();
});
$("div[class='foo']").click(function(e) {
    e.preventDefault();
    $(this).hide();
    $('img.loading', this).show();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文