jquery中如何选择变量中的元素

发布于 2024-12-09 10:50:07 字数 266 浏览 0 评论 0原文

假设以下代码

<div class="hello"> 
  <h2>I'm a header</h2>
</div>

<script>
foo = $('.hello');
</script>

如何从 foo 中选择 h2 标签并替换其内容?

我基本上是在寻找 $('.hello > h2).html('New header') 的等效项,但在变量上。

Assume the follow code

<div class="hello"> 
  <h2>I'm a header</h2>
</div>

<script>
foo = $('.hello');
</script>

How do I select the h2 tag from foo and replace it's contents?

I'm basically looking for the equivalent of $('.hello > h2).html('New header') but on the variable.

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

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

发布评论

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

评论(4

会发光的星星闪亮亮i 2024-12-16 10:50:07

您是否在寻找:

foo = $('.hello');
foo.find('> h2').html('New Header');

Are you looking for:

foo = $('.hello');
foo.find('> h2').html('New Header');
虚拟世界 2024-12-16 10:50:07
var foo = $(".hello > h2")

jquery API

var foo = $(".hello > h2")

jquery api

夏末 2024-12-16 10:50:07

我想你可以做如下的事情

foo = $(".hello h2");

I guess you could do something like below

foo = $(".hello h2");
烛影斜 2024-12-16 10:50:07

要获取 jQuery 对象的子对象,可以使用children():

var foo = $('.hello');
foo.children('h2').html('New header');

To get a child of a jQuery object you can use children():

var foo = $('.hello');
foo.children('h2').html('New header');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文