有没有办法可以通过jQuery跟踪特定div中有多少<a href=""></a>
?
答案 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/)