我如何使用 JQuery 检索对代表其容器对象的变量内的 div 的引用?
How can I use JQuery to retrieve the reference to a div inside a variable that represent its container object?
我不是很喜欢 JavaScript\JQuery,我有以下问题:
进入一个页面我有一些 <section>
标签,像这样:
<section class="com__section com__section--text functionSection">
<div></div>
</section>
<section class="com__section com__section--text functionSection">
<div></div>
</section>
<section class="com__section com__section--text functionSection">
<div></div>
</section>
然后我有一个 JQuery 脚本,其中 select 这些部分之一(使用特定逻辑,但这现在不重要),如下所示:
var s = section.eq(i);
因此 s
变量包含与特定 <section>
标签相关的对象。
现在我的问题是,从这个 s 变量开始,我怎样才能获得对这个 <section>
内部的内部 <div>
的引用?如何使用 JQuery?
正确实现此行为
也许是这样的?
var div = s.find('div');
希望对您有所帮助。
我不是很喜欢 JavaScript\JQuery,我有以下问题:
进入一个页面我有一些 <section>
标签,像这样:
<section class="com__section com__section--text functionSection">
<div></div>
</section>
<section class="com__section com__section--text functionSection">
<div></div>
</section>
<section class="com__section com__section--text functionSection">
<div></div>
</section>
然后我有一个 JQuery 脚本,其中 select 这些部分之一(使用特定逻辑,但这现在不重要),如下所示:
var s = section.eq(i);
因此 s
变量包含与特定 <section>
标签相关的对象。
现在我的问题是,从这个 s 变量开始,我怎样才能获得对这个 <section>
内部的内部 <div>
的引用?如何使用 JQuery?
也许是这样的?
var div = s.find('div');
希望对您有所帮助。