Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试添加一个脚本,它将一个类添加到我选择的列表项中。
我已经尝试过了,但它没有添加类
$('.navigation ul li').get(0).addClass("active");
我究竟做错了什么?
利用.eq()
.eq()
$('.navigation ul li').eq(0).addClass("active");
http://api.jquery.com/eq/
为什么get()没有工作?看到这个 - jQuery : eq() vs get()
get()
利用.children().eq()
.children().eq()
$('.navigation ul').children().eq(0).addClass('class');