gpt4 book ai didi

javascript - 使用 jQuery 在 div 中选择一个主体

转载 作者:行者123 更新时间:2023-11-30 10:39:55 25 4
gpt4 key购买 nike

我有一个元素(例如,一个主体)嵌套在一个 div 中的某处。类似于:

<div class=wrapper>
..
..
<body>
</body>
</div>

我将如何使用 jQuery 选择正文?

最佳答案

As others have said - this doesn't look like valid HTML - I'm going to assume that you just gave that as an example as this technique can be used to find any type of element.

这应该可以找到 body 标签 -

$('div.wrapper').find('body')

当您没有在选择器中指定您正在谈论的类时 .或编号 #属性 - 整个字符串将匹配元素的类型。

同样的方法可以用于 -

  • <img>标签-
    $('div.wrapper').find('img')
  • <a>标签-
    $('div.wrapper').find('a')
  • <span>标签-
    $('div.wrapper').find('span')
  • 等...

关于javascript - 使用 jQuery 在 div 中选择一个主体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11659648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com