摘要: js正则获取a标签的href let str = '<a href="https://www.test.com" >test</a>' let reg = /((\w+):\/\/)?([\w.]+[.]{1})[\w]+/ console.log(str.match(reg)[0]) 阅读全文
posted @ 2021-06-16 11:51 李照耀 阅读(2691) 评论(2) 推荐(0) 编辑