.next() / .prev()

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

[TOC] ## .next() 获取满足条件的下一个兄弟元素 ### 示例 ``` $('li').next().css('background-color', 'red'); ```
';