.eq() / .first() / .last()

最后更新于:2022-04-02 03:20:17

[TOC] ## .eq() 指定第几个元素,从0开始 ### 示例 ``` $('li').eq(0).css('background-color', 'red'); ```
';