使用javascript正则表达式提取指定类的href值(单独)

我有一些链接,如下面的链接,

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.

从上面的字符串我想要提取href类名所在的值checkSomething

基本上我必须单独获取链接,即https://something.com

我试过下面的正则表达式

/<a class="checkSomething" href="([^"]*)">/

但它提供了<a>如下标签的链接

<a class="checkSomething" href="https://something.com"

有人可以帮我吗?提前致谢!


互换的青春
浏览 2120回答 3
3回答

呼如林

试试这个:/class="checkStatusNowLink"&nbsp;href="([^"]+)/在线演示
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript