jquery中如何选择变量中的元素
假设以下代码
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否在寻找:
Are you looking for:
jquery API
jquery api
我想你可以做如下的事情
I guess you could do something like below
要获取 jQuery 对象的子对象,可以使用children():
To get a child of a jQuery object you can use children():