gpt4 book ai didi

jquery - 使用 jquery 通过 id inside section 标签获取所有跨度

转载 作者:行者123 更新时间:2023-11-28 04:29:36 26 4
gpt4 key购买 nike

您好,我在我的页面中使用了一个部分标签,其中我有多个具有不同 ID 的跨度,如下所示有一个示例:

<section class="blog-summary-read col-md-6 col-md-offset-1">
<span id="spnid2">2</span>
<span id="spnid3">3</span>
<span id="spnid4">4</span>
<span id="spnid5">5</span>
<span id="spnid6">6</span>
</section>

我如何使用 jquery 获取每个跨度 ID?

最佳答案

获取所有span元素,然后迭代获取id。

/** Method 1 : to get as an array **/

console.log(
// get all span elements have id and within section
$('section span[id]')
// iterate to generate the array of id
.map(function() {
// return the id value
return this.id;
})
// get array from jQuery object
.get()
)

/** Method 2 : just iterating **/

$('section span[id]').each(function() {
console.log(this.id);
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<section class="blog-summary-read col-md-6 col-md-offset-1">
<span id="spnid2">2</span>
<span id="spnid3">3</span>
<span id="spnid4">4</span>
<span id="spnid5">5</span>
<span id="spnid6">6</span>
</section>

关于jquery - 使用 jquery 通过 id inside section 标签获取所有跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41012824/

26 4 0