質問

How can i request all anchors on a single HTML document?

$('.notfront article a[href!=http]').attr('href')

return only the first match,

$('.notfront article a').attr('href').match(/^#\w+/g)

also return only the first element.

役に立ちましたか?

解決

function getAnchorElements(){
    var elems = [];
    $('.notfront article a').each(function(){
        if($(this).attr('href').match(/^#\w+/g))
            elems.push(this);
    });
    return elems;
}

他のヒント

This should select them without the foreach loop.

$(".notfront article a[href^='#']" ).
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top