1
我有下面的例子:LIVE EXAMPLEjquery返回false - 爲什麼?
我的語句返回false,爲什麼呢?
if($('.superstars-table tr').slice(5).is(':hidden') == true){ alert('yes');}
我有下面的例子:LIVE EXAMPLEjquery返回false - 爲什麼?
我的語句返回false,爲什麼呢?
if($('.superstars-table tr').slice(5).is(':hidden') == true){ alert('yes');}
因爲您的選擇器$('.superstars-table tr').slice(5)
不符合任何元素。 slice()
方法是零索引,所以請改爲$('.superstars-table tr').slice(4)
。