如何用jq获取a里面href含有.pdf的那个ul
发布网友
发布时间:2022-05-23 22:32
我来回答
共1个回答
热心网友
时间:2024-03-09 15:26
//正则用来匹配.pdf
var reg = /\.{1}(pdf)/g;
//循环所有a标签
$('a').each(function(){
//获取url
var href = $(this).attr('href');
//如果当前a标签中含有.pdf
if(reg.test(href)){
//alert此url
alert(href);
}
});