如何在单个HTML文档上请求所有锚点?
$('.notfront article a[href!=http]').attr('href')
仅返回第一场比赛,
$('.notfront article a').attr('href').match(/^#\w+/g)
也只返回第一个元素。
答案 0 :(得分:2)
function getAnchorElements(){
var elems = [];
$('.notfront article a').each(function(){
if($(this).attr('href').match(/^#\w+/g))
elems.push(this);
});
return elems;
}
答案 1 :(得分:1)
这应该在没有foreach循环的情况下选择它们。
$(".notfront article a[href^='#']" ).