gpt4 book ai didi

javascript - Cheerio - 查找并打印与查询匹配的所有属性

转载 作者:行者123 更新时间:2023-12-03 00:09:21 31 4
gpt4 key购买 nike

如果我有以下 html 代码:

<a class="my-lovely-name" title="hello" href="fb.com">Random stuff</a>
<div class="my-lovel-name" title="ew" href="yb.com">blabla</div>

如何使用cheerio提取titlehref的所有值?我尝试了以下操作,但它只会提取 hellofb.com 并跳过其余元素:

console.log($('.my-lovely-name').attr('title')) => should print the titles of all elements with this class
console.log($('.my-lovely-name').attr('href')) => => should print the href-s of all elements with this class

最佳答案

您应该能够将它们映射到数组中。

console.log(
$('.my-lovely-name').map(
(index, element) => element.title
).get()
)

引用号。 https://github.com/cheeriojs/cheerio#map-functionindex-element-

关于javascript - Cheerio - 查找并打印与查询匹配的所有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54816425/

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