标签: jquery
我有以下示例: LIVE EXAMPLE
我的陈述是假的,为什么?
if( $('.superstars-table tr').slice(5).is(':hidden') == true ){ alert('yes');}
答案 0 :(得分:6)
因为您的选择器$('.superstars-table tr').slice(5)与任何元素都不匹配。 slice()方法零索引,因此请尝试使用$('.superstars-table tr').slice(4)。
$('.superstars-table tr').slice(5)
slice()
$('.superstars-table tr').slice(4)