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'));
});

浙公网安备 33010602011771号