在cheerio中,可以使用children()
方法来获取一个div元素的子节点。该方法返回一个包含所有子节点的cheerio对象。
以下是一个示例代码:
const cheerio = require('cheerio');
const html = '<div><p>Child 1</p><p>Child 2</p></div>';
const $ = cheerio.load(html);
const div = $('div');
const childNodes = div.children();
console.log(childNodes);
输出结果为:
[ <p>Child 1</p>, <p>Child 2</p> ]
在上述代码中,我们首先使用cheerio.load()
方法将HTML字符串加载到cheerio对象中。然后,使用$('div')
选择器选择了一个div元素。接下来,使用children()
方法获取了div元素的子节点,并将结果存储在childNodes
变量中。最后,我们打印了childNodes
的值,即包含了div的所有子节点的cheerio对象数组。
需要注意的是,children()
方法只会返回直接子节点,不会返回所有后代节点。如果需要获取所有后代节点,可以使用find()
方法。
关于cheerio的更多用法和详细介绍,可以参考腾讯云的相关产品文档:cheerio - 腾讯云
领取专属 10元无门槛券
手把手带您无忧上云