下午好,
我的问题是我需要计算无序列表中包含的孩子。我目前正在尝试使用 .length 技术,但它似乎不起作用。
我需要做的是计算列表中是否有足够的项目来显示菜单中的隐藏链接。
HTML
<ul class="locations_list">
<a href="#"><h2>List item 1</h2></a>
<li><a href="#">List item 2</a></li>
<li><a href="#">List item 3</a></li>
<li class="all_attractions"><a href="#">See more items..</a></li>
</ul>
CSS
.all_attractions { display: none !important; }
jQuery
var listLength = $('.locations_list').children().length();
if (listLength == 6) {
$('.all_attractions').show();
}
不是 100% 确定我在哪里出错了。如果有人可以提供帮助,将不胜感激。