通过jQuery跟踪div中的锚点

时间:2012-10-12 23:11:36

标签: jquery html hyperlink anchor

有没有办法可以通过jQuery跟踪特定div中有多少<a href=""></a>

2 个答案:

答案 0 :(得分:5)

您可以使用length属性:

$('div#specific a').length;

如果您想知道有多少个空 href 内容的锚点,您可以使用filter方法和:empty选择器:

$('div#specific a:empty').filter(function(){
    return this.href === ""
}).length;

答案 1 :(得分:0)

您也可以使用长度和尺寸:

但长度是首选(http://api.jquery.com/length/)

$('a').length
$('a').size();

注意:首选.length属性,因为它没有函数调用的开销(礼貌:http://api.jquery.com/size/