node cheerio

'use strict';
  const str = 'Some text will come here <a class="checkSomething" href="https://something.com" style="color: rgb(255, 255, 255); font-size: 17px;">Check Status</a>. Some text will come here <a href="#">Click</a> Some text will come here.';
  const cheerio = require("cheerio");
  const $ = cheerio.load(str);
  $('a.checkSomething').each(function() {
  console.info($(this).attr('href'));
});

posted @ 2021-03-24 08:51  不灭火  阅读(14)  评论(0)    收藏  举报